@undp/data-viz 1.4.12 → 1.4.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/DualAxisLineChart.cjs +1 -1
- package/dist/DualAxisLineChart.cjs.map +1 -1
- package/dist/DualAxisLineChart.d.ts +3 -1
- package/dist/DualAxisLineChart.js +232 -229
- package/dist/DualAxisLineChart.js.map +1 -1
- package/dist/{GraphEl-s3ctz7oA.js → GraphEl-B3xVlimz.js} +5 -1
- package/dist/GraphEl-B3xVlimz.js.map +1 -0
- package/dist/GraphEl-DO-juRN8.cjs +2 -0
- package/dist/GraphEl-DO-juRN8.cjs.map +1 -0
- package/dist/GriddedGraphs.cjs +1 -1
- package/dist/GriddedGraphs.d.ts +1 -0
- package/dist/GriddedGraphs.js +1 -1
- package/dist/GriddedGraphsFromConfig.d.ts +1 -0
- package/dist/MultiGraphDashboard.d.ts +1 -0
- package/dist/MultiGraphDashboardFromConfig.d.ts +1 -0
- package/dist/ParetoChart.cjs +1 -1
- package/dist/ParetoChart.cjs.map +1 -1
- package/dist/ParetoChart.d.ts +4 -0
- package/dist/ParetoChart.js +310 -306
- package/dist/ParetoChart.js.map +1 -1
- package/dist/PerformanceIntensiveMultiGraphDashboard.d.ts +1 -0
- package/dist/PerformanceIntensiveMultiGraphDashboardFromConfig.d.ts +1 -0
- package/dist/PerformanceIntensiveScrollStory.d.ts +1 -0
- package/dist/ScrollStory.d.ts +1 -0
- package/dist/SingleGraphDashboard.cjs +1 -1
- package/dist/SingleGraphDashboard.d.ts +1 -0
- package/dist/SingleGraphDashboard.js +1 -1
- package/dist/SingleGraphDashboardFromConfig.d.ts +1 -0
- package/dist/SingleGraphDashboardGeoHubMaps.d.ts +1 -0
- package/dist/SingleGraphDashboardGeoHubMapsFromConfig.d.ts +1 -0
- package/dist/SingleGraphDashboardThreeDGraphs.d.ts +1 -0
- package/dist/SingleGraphDashboardThreeDGraphsFromConfig.d.ts +1 -0
- package/dist/Types.d.ts +1 -0
- package/dist/index.d.ts +8 -1
- package/package.json +1 -1
- package/dist/GraphEl-OzC-icbr.cjs +0 -2
- package/dist/GraphEl-OzC-icbr.cjs.map +0 -1
- package/dist/GraphEl-s3ctz7oA.js.map +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GraphEl-B3xVlimz.js","sources":["../src/Components/Dashboard/GraphEl.tsx"],"sourcesContent":["import { P } from '@undp/design-system-react/Typography';\r\n\r\nimport { ButterflyChart } from '../Graphs/ButterflyChart';\r\nimport { CirclePackingGraph } from '../Graphs/CirclePackingGraph';\r\nimport { DataTable } from '../Graphs/DataTable';\r\nimport { DonutChart } from '../Graphs/DonutChart';\r\nimport { HeatMap } from '../Graphs/HeatMap';\r\nimport { Histogram } from '../Graphs/Histogram';\r\nimport { DualAxisLineChart } from '../Graphs/LineCharts/DualAxisLineChart';\r\nimport { SimpleLineChart } from '../Graphs/LineCharts/LineChart';\r\nimport { MultiLineChart } from '../Graphs/LineCharts/MultiLineChart';\r\nimport { MultiLineAltChart } from '../Graphs/LineCharts/MultiLineAltChart';\r\nimport { SparkLine } from '../Graphs/LineCharts/SparkLine';\r\nimport { BiVariateChoroplethMap } from '../Graphs/Maps/BiVariateMap';\r\nimport { ChoroplethMap } from '../Graphs/Maps/ChoroplethMap';\r\nimport { DotDensityMap } from '../Graphs/Maps/DotDensityMap';\r\nimport { ParetoChart } from '../Graphs/ParetoChart';\r\nimport { ScatterPlot } from '../Graphs/ScatterPlot';\r\nimport { SlopeChart } from '../Graphs/SlopeChart';\r\nimport { AreaChart } from '../Graphs/StackedAreaChart';\r\nimport { StatCardFromData } from '../Graphs/StatCard/StatCardFromData';\r\nimport { TreeMapGraph } from '../Graphs/TreeMapGraph';\r\nimport { UnitChart } from '../Graphs/UnitChart';\r\nimport { DifferenceLineChart } from '../Graphs/LineCharts/DifferenceLineChart';\r\nimport { SankeyChart } from '../Graphs/SankeyChart';\r\nimport { LineChartWithConfidenceInterval } from '../Graphs/LineCharts/LineChartWithConfidenceInterval';\r\nimport { DataCards } from '../Graphs/DataCards';\r\nimport { SimpleBarGraph, GroupedBarGraph, StackedBarGraph } from '../Graphs/BarGraph';\r\nimport { DumbbellChart } from '../Graphs/DumbbellChart';\r\nimport { StripChart } from '../Graphs/StripChart';\r\nimport { BeeSwarmChart } from '../Graphs/BeeSwarmChart';\r\nimport { RadarChart } from '../Graphs/RadarChart';\r\nimport { BulletChart } from '../Graphs/BulletChart';\r\n\r\nimport { getValues } from '@/Utils/getValues';\r\nimport {\r\n DataTableColumnDataType,\r\n GraphConfigurationDataType,\r\n GraphSettingsDataType,\r\n GraphType,\r\n HighlightAreaSettingsDataType,\r\n HighlightAreaSettingsForScatterPlotDataType,\r\n} from '@/Types';\r\n\r\ninterface Props {\r\n graph: GraphType;\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n graphData: any;\r\n settings?: GraphSettingsDataType;\r\n debugMode?: boolean;\r\n graphDataConfiguration?: GraphConfigurationDataType[];\r\n readableHeader: {\r\n value: string;\r\n label: string;\r\n }[];\r\n updateFilters?: (_d: string) => void;\r\n}\r\n\r\nfunction GraphEl(props: Props) {\r\n const {\r\n settings,\r\n graph,\r\n graphData,\r\n debugMode,\r\n graphDataConfiguration,\r\n readableHeader,\r\n updateFilters,\r\n } = props;\r\n if (debugMode) {\r\n // eslint-disable-next-line no-console\r\n console.log(`Graph: ${graph}`);\r\n // eslint-disable-next-line no-console\r\n console.log('Transformed data:', graphData);\r\n // eslint-disable-next-line no-console\r\n console.log('Settings:', settings);\r\n }\r\n if (typeof graphData === 'string')\r\n return (\r\n <div\r\n className={`flex my-0 mx-auto grow flex-col justify-center ${\r\n settings?.width ? 'w-fit' : 'w-full'\r\n }`}\r\n style={{ height: 'inherit' }}\r\n >\r\n <P\r\n size='sm'\r\n marginBottom='none'\r\n className='p-2 text-center text-accent-dark-red dark:text-accent-red'\r\n >\r\n {graphData}\r\n </P>\r\n </div>\r\n );\r\n const graphComponents: Record<GraphType, React.ElementType | null> = {\r\n barChart: SimpleBarGraph,\r\n bulletChart: BulletChart,\r\n groupedBarChart: GroupedBarGraph,\r\n stackedBarChart: StackedBarGraph,\r\n lineChart: SimpleLineChart,\r\n dualAxisLineChart: DualAxisLineChart,\r\n multiLineChart: MultiLineChart,\r\n multiLineAltChart: MultiLineAltChart,\r\n stackedAreaChart: AreaChart,\r\n choroplethMap: ChoroplethMap,\r\n biVariateChoroplethMap: BiVariateChoroplethMap,\r\n dotDensityMap: DotDensityMap,\r\n donutChart: DonutChart,\r\n slopeChart: SlopeChart,\r\n scatterPlot: ScatterPlot,\r\n dumbbellChart: DumbbellChart,\r\n treeMap: TreeMapGraph,\r\n circlePacking: CirclePackingGraph,\r\n heatMap: HeatMap,\r\n stripChart: StripChart,\r\n beeSwarmChart: BeeSwarmChart,\r\n butterflyChart: ButterflyChart,\r\n histogram: Histogram,\r\n sparkLine: SparkLine,\r\n paretoChart: ParetoChart,\r\n dataTable: DataTable,\r\n statCard: StatCardFromData,\r\n unitChart: UnitChart,\r\n differenceLineChart: DifferenceLineChart,\r\n sankeyChart: SankeyChart,\r\n lineChartWithConfidenceInterval: LineChartWithConfidenceInterval,\r\n dataCards: DataCards,\r\n radarChart: RadarChart,\r\n };\r\n const getGraphProps = (graphType: GraphType) => {\r\n switch (graphType) {\r\n case 'barChart':\r\n return {\r\n timeline: settings?.timeline,\r\n customLayers: settings?.customLayers,\r\n precision: settings?.precision,\r\n theme: settings?.theme,\r\n dimmedOpacity: settings?.dimmedOpacity,\r\n orientation: settings?.orientation,\r\n data: graphData,\r\n colors: settings?.colors as string | string[] | undefined,\r\n graphTitle: settings?.graphTitle,\r\n graphDescription: settings?.graphDescription,\r\n footNote: settings?.footNote,\r\n height: settings?.height,\r\n width: settings?.width,\r\n suffix: settings?.suffix,\r\n prefix: settings?.prefix,\r\n sources: settings?.sources,\r\n barPadding: settings?.barPadding,\r\n showValues: settings?.showValues,\r\n showTicks: settings?.showTicks,\r\n leftMargin: settings?.leftMargin,\r\n rightMargin: settings?.rightMargin,\r\n truncateBy: settings?.truncateBy,\r\n colorDomain: settings?.colorDomain,\r\n colorLegendTitle:\r\n Object.keys(settings || {}).indexOf('colorLegendTitle') !== -1\r\n ? settings?.colorLegendTitle\r\n : getValues('color', graphDataConfiguration || [], readableHeader || []),\r\n backgroundColor: settings?.backgroundColor,\r\n padding: settings?.padding,\r\n topMargin: settings?.topMargin,\r\n bottomMargin: settings?.bottomMargin,\r\n relativeHeight: settings?.relativeHeight,\r\n showLabels: settings?.showLabels,\r\n showColorScale: settings?.showColorScale,\r\n maxValue: settings?.maxValue,\r\n minValue: settings?.minValue,\r\n labelOrder: settings?.labelOrder,\r\n tooltip: settings?.tooltip,\r\n refValues: settings?.refValues,\r\n graphID: settings?.graphID,\r\n highlightedDataPoints: settings?.highlightedDataPoints,\r\n graphDownload: settings?.graphDownload,\r\n dataDownload: settings?.dataDownload,\r\n sortData: settings?.sortData,\r\n language: settings?.language,\r\n minHeight: settings?.minHeight,\r\n showNAColor: settings?.showNAColor,\r\n maxBarThickness: settings?.maxBarThickness,\r\n minBarThickness: settings?.minBarThickness,\r\n maxNumberOfBars: settings?.maxNumberOfBars,\r\n ariaLabel: settings?.ariaLabel,\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n onSeriesMouseClick: (el: any) => {\r\n updateFilters?.(el.label);\r\n },\r\n resetSelectionOnDoubleClick: settings?.resetSelectionOnDoubleClick,\r\n detailsOnClick: settings?.detailsOnClick,\r\n barAxisTitle: settings?.barAxisTitle,\r\n noOfTicks: settings?.noOfTicks,\r\n valueColor: settings?.valueColor,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n filterNA: settings?.filterNA,\r\n animate: settings?.animate,\r\n naLabel: settings?.naLabel,\r\n };\r\n case 'groupedBarChart':\r\n return {\r\n timeline: settings?.timeline,\r\n customLayers: settings?.customLayers,\r\n precision: settings?.precision,\r\n theme: settings?.theme,\r\n orientation: settings?.orientation,\r\n sortParameter: settings?.sortParameter,\r\n sortData: settings?.sortData,\r\n data: graphData,\r\n colors: settings?.colors as string[] | undefined,\r\n graphTitle: settings?.graphTitle,\r\n graphDescription: settings?.graphDescription,\r\n footNote: settings?.footNote,\r\n width: settings?.width,\r\n height: settings?.height,\r\n showColorScale: settings?.showColorScale,\r\n sources: settings?.sources,\r\n barPadding: settings?.barPadding,\r\n showTicks: settings?.showTicks,\r\n truncateBy: settings?.truncateBy,\r\n colorDomain:\r\n settings?.colorDomain ||\r\n (getValues('size', graphDataConfiguration || [], readableHeader || []) as string[]),\r\n colorLegendTitle: settings?.colorLegendTitle,\r\n suffix: settings?.suffix,\r\n prefix: settings?.prefix,\r\n showValues: settings?.showValues,\r\n backgroundColor: settings?.backgroundColor,\r\n padding: settings?.padding,\r\n leftMargin: settings?.leftMargin,\r\n rightMargin: settings?.rightMargin,\r\n topMargin: settings?.topMargin,\r\n showLabels: settings?.showLabels,\r\n bottomMargin: settings?.bottomMargin,\r\n relativeHeight: settings?.relativeHeight,\r\n tooltip: settings?.tooltip,\r\n refValues: settings?.refValues,\r\n graphID: settings?.graphID,\r\n labelOrder: settings?.labelOrder,\r\n maxValue: settings?.maxValue,\r\n minValue: settings?.minValue,\r\n graphDownload: settings?.graphDownload,\r\n dataDownload: settings?.dataDownload,\r\n language: settings?.language,\r\n minHeight: settings?.minHeight,\r\n maxBarThickness: settings?.maxBarThickness,\r\n ariaLabel: settings?.ariaLabel,\r\n resetSelectionOnDoubleClick: settings?.resetSelectionOnDoubleClick,\r\n detailsOnClick: settings?.detailsOnClick,\r\n barAxisTitle: settings?.barAxisTitle,\r\n noOfTicks: settings?.noOfTicks,\r\n valueColor: settings?.valueColor,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n animate: settings?.animate,\r\n naLabel: settings?.naLabel,\r\n };\r\n case 'stackedBarChart':\r\n return {\r\n timeline: settings?.timeline,\r\n customLayers: settings?.customLayers,\r\n precision: settings?.precision,\r\n theme: settings?.theme,\r\n orientation: settings?.orientation,\r\n resetSelectionOnDoubleClick: settings?.resetSelectionOnDoubleClick,\r\n data: graphData,\r\n colors: settings?.colors as string[] | undefined,\r\n graphTitle: settings?.graphTitle,\r\n graphDescription: settings?.graphDescription,\r\n footNote: settings?.footNote,\r\n showColorScale: settings?.showColorScale,\r\n width: settings?.width,\r\n height: settings?.height,\r\n sources: settings?.sources,\r\n barPadding: settings?.barPadding,\r\n showTicks: settings?.showTicks,\r\n leftMargin: settings?.leftMargin,\r\n rightMargin: settings?.rightMargin,\r\n truncateBy: settings?.truncateBy,\r\n colorDomain:\r\n settings?.colorDomain ||\r\n (getValues('size', graphDataConfiguration || [], readableHeader || []) as string[]),\r\n colorLegendTitle: settings?.colorLegendTitle,\r\n backgroundColor: settings?.backgroundColor,\r\n padding: settings?.padding,\r\n topMargin: settings?.topMargin,\r\n bottomMargin: settings?.bottomMargin,\r\n suffix: settings?.suffix,\r\n prefix: settings?.prefix,\r\n labelOrder: settings?.labelOrder,\r\n showValues: settings?.showValues,\r\n showLabels: settings?.showLabels,\r\n relativeHeight: settings?.relativeHeight,\r\n tooltip: settings?.tooltip,\r\n refValues: settings?.refValues,\r\n graphID: settings?.graphID,\r\n maxValue: settings?.maxValue,\r\n graphDownload: settings?.graphDownload,\r\n dataDownload: settings?.dataDownload,\r\n language: settings?.language,\r\n minHeight: settings?.minHeight,\r\n maxBarThickness: settings?.maxBarThickness,\r\n minBarThickness: settings?.minBarThickness,\r\n maxNumberOfBars: settings?.maxNumberOfBars,\r\n sortParameter: settings?.sortParameter,\r\n sortData: settings?.sortData,\r\n ariaLabel: settings?.ariaLabel,\r\n detailsOnClick: settings?.detailsOnClick,\r\n barAxisTitle: settings?.barAxisTitle,\r\n noOfTicks: settings?.noOfTicks,\r\n valueColor: settings?.valueColor,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n animate: settings?.animate,\r\n naLabel: settings?.naLabel,\r\n };\r\n case 'bulletChart':\r\n return {\r\n customLayers: settings?.customLayers,\r\n precision: settings?.precision,\r\n theme: settings?.theme,\r\n dimmedOpacity: settings?.dimmedOpacity,\r\n orientation: settings?.orientation,\r\n data: graphData,\r\n barColor: settings?.colors as string,\r\n graphTitle: settings?.graphTitle,\r\n graphDescription: settings?.graphDescription,\r\n footNote: settings?.footNote,\r\n height: settings?.height,\r\n width: settings?.width,\r\n suffix: settings?.suffix,\r\n prefix: settings?.prefix,\r\n sources: settings?.sources,\r\n barPadding: settings?.barPadding,\r\n showValues: settings?.showValues,\r\n showTicks: settings?.showTicks,\r\n leftMargin: settings?.leftMargin,\r\n rightMargin: settings?.rightMargin,\r\n truncateBy: settings?.truncateBy,\r\n colorDomain: settings?.colorDomain,\r\n colorLegendTitle:\r\n Object.keys(settings || {}).indexOf('colorLegendTitle') !== -1\r\n ? settings?.colorLegendTitle\r\n : getValues('color', graphDataConfiguration || [], readableHeader || []),\r\n backgroundColor: settings?.backgroundColor,\r\n padding: settings?.padding,\r\n topMargin: settings?.topMargin,\r\n bottomMargin: settings?.bottomMargin,\r\n relativeHeight: settings?.relativeHeight,\r\n showLabels: settings?.showLabels,\r\n showColorScale: settings?.showColorScale,\r\n maxValue: settings?.maxValue,\r\n minValue: settings?.minValue,\r\n labelOrder: settings?.labelOrder,\r\n tooltip: settings?.tooltip,\r\n refValues: settings?.refValues,\r\n graphID: settings?.graphID,\r\n highlightedDataPoints: settings?.highlightedDataPoints,\r\n graphDownload: settings?.graphDownload,\r\n dataDownload: settings?.dataDownload,\r\n sortData: settings?.sortData,\r\n language: settings?.language,\r\n minHeight: settings?.minHeight,\r\n showNAColor: settings?.showNAColor,\r\n maxBarThickness: settings?.maxBarThickness,\r\n minBarThickness: settings?.minBarThickness,\r\n maxNumberOfBars: settings?.maxNumberOfBars,\r\n ariaLabel: settings?.ariaLabel,\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n onSeriesMouseClick: (el: any) => {\r\n updateFilters?.(el.label);\r\n },\r\n resetSelectionOnDoubleClick: settings?.resetSelectionOnDoubleClick,\r\n detailsOnClick: settings?.detailsOnClick,\r\n barAxisTitle: settings?.barAxisTitle,\r\n noOfTicks: settings?.noOfTicks,\r\n valueColor: settings?.valueColor,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n filterNA: settings?.filterNA,\r\n qualitativeRangeColors: settings?.qualitativeRangeColors,\r\n targetStyle: settings?.targetStyle,\r\n targetColor: settings?.targetColor,\r\n measureBarWidthFactor: settings?.measureBarWidthFactor,\r\n animate: settings?.animate,\r\n naLabel: settings?.naLabel,\r\n };\r\n case 'lineChart':\r\n return {\r\n customLayers: settings?.customLayers,\r\n precision: settings?.precision,\r\n theme: settings?.theme,\r\n curveType: settings?.curveType,\r\n data: graphData,\r\n graphID: settings?.graphID,\r\n lineColor: settings?.lineColor as string | undefined,\r\n graphTitle: settings?.graphTitle,\r\n graphDescription: settings?.graphDescription,\r\n footNote: settings?.footNote,\r\n width: settings?.width,\r\n height: settings?.height,\r\n suffix: settings?.suffix,\r\n prefix: settings?.prefix,\r\n sources: settings?.sources,\r\n noOfXTicks: settings?.noOfXTicks,\r\n dateFormat: settings?.dateFormat,\r\n showValues: settings?.showValues,\r\n backgroundColor: settings?.backgroundColor,\r\n padding: settings?.padding,\r\n leftMargin: settings?.leftMargin,\r\n rightMargin: settings?.rightMargin,\r\n topMargin: settings?.topMargin,\r\n bottomMargin: settings?.bottomMargin,\r\n relativeHeight: settings?.relativeHeight,\r\n tooltip: settings?.tooltip,\r\n refValues: settings?.refValues,\r\n highlightAreaSettings: settings?.highlightAreaSettings as\r\n | HighlightAreaSettingsDataType[]\r\n | undefined,\r\n maxValue: settings?.maxValue,\r\n minValue: settings?.minValue,\r\n graphDownload: settings?.graphDownload,\r\n dataDownload: settings?.dataDownload,\r\n language: settings?.language,\r\n minHeight: settings?.minHeight,\r\n animate: settings?.animate,\r\n strokeWidth: settings?.strokeWidth,\r\n showDots: settings?.showDots,\r\n customHighlightAreaSettings: settings?.customHighlightAreaSettings,\r\n annotations: settings?.annotations,\r\n regressionLine: settings?.regressionLine,\r\n ariaLabel: settings?.ariaLabel,\r\n yAxisTitle: settings?.yAxisTitle,\r\n noOfYTicks: settings?.noOfYTicks,\r\n minDate: settings?.minDate,\r\n maxDate: settings?.maxDate,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n };\r\n case 'lineChartWithConfidenceInterval':\r\n return {\r\n customLayers: settings?.customLayers,\r\n precision: settings?.precision,\r\n theme: settings?.theme,\r\n data: graphData,\r\n curveType: settings?.curveType,\r\n graphID: settings?.graphID,\r\n lineColor: settings?.lineColor,\r\n graphTitle: settings?.graphTitle,\r\n graphDescription: settings?.graphDescription,\r\n footNote: settings?.footNote,\r\n width: settings?.width,\r\n height: settings?.height,\r\n suffix: settings?.suffix,\r\n prefix: settings?.prefix,\r\n sources: settings?.sources,\r\n noOfXTicks: settings?.noOfXTicks,\r\n dateFormat: settings?.dateFormat,\r\n showValues: settings?.showValues,\r\n backgroundColor: settings?.backgroundColor,\r\n padding: settings?.padding,\r\n leftMargin: settings?.leftMargin,\r\n rightMargin: settings?.rightMargin,\r\n topMargin: settings?.topMargin,\r\n bottomMargin: settings?.bottomMargin,\r\n relativeHeight: settings?.relativeHeight,\r\n tooltip: settings?.tooltip,\r\n refValues: settings?.refValues,\r\n highlightAreaSettings: settings?.highlightAreaSettings as\r\n | HighlightAreaSettingsDataType[]\r\n | undefined,\r\n maxValue: settings?.maxValue,\r\n minValue: settings?.minValue,\r\n graphDownload: settings?.graphDownload,\r\n dataDownload: settings?.dataDownload,\r\n language: settings?.language,\r\n minHeight: settings?.minHeight,\r\n animate: settings?.animate,\r\n strokeWidth: settings?.strokeWidth,\r\n showDots: settings?.showDots,\r\n customHighlightAreaSettings: settings?.customHighlightAreaSettings,\r\n annotations: settings?.annotations,\r\n regressionLine: settings?.regressionLine,\r\n ariaLabel: settings?.ariaLabel,\r\n showIntervalDots: settings?.showIntervalDots,\r\n showIntervalValues: settings?.showIntervalValues,\r\n intervalLineStrokeWidth: settings?.intervalLineStrokeWidth,\r\n intervalLineColors: settings?.intervalLineColors,\r\n intervalAreaColor: settings?.intervalAreaColor,\r\n intervalAreaOpacity: settings?.intervalAreaOpacity,\r\n yAxisTitle: settings?.yAxisTitle,\r\n noOfYTicks: settings?.noOfYTicks,\r\n minDate: settings?.minDate,\r\n maxDate: settings?.maxDate,\r\n colorLegendTitle: settings?.colorLegendTitle,\r\n colorLegendColors: settings?.colorLegendColors,\r\n colorLegendDomain: settings?.colorLegendDomain,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n };\r\n case 'dualAxisLineChart':\r\n return {\r\n showAxisLabel: settings?.showAxisLabels,\r\n showColorScale: settings?.showColorScale,\r\n customLayers: settings?.customLayers,\r\n precision: settings?.precision,\r\n theme: settings?.theme,\r\n data: graphData,\r\n curveType: settings?.curveType,\r\n graphTitle: settings?.graphTitle,\r\n graphDescription: settings?.graphDescription,\r\n labels: settings?.labels || [\r\n getValues('y1', graphDataConfiguration || [], readableHeader || []),\r\n getValues('y2', graphDataConfiguration || [], readableHeader || []),\r\n ],\r\n footNote: settings?.footNote,\r\n width: settings?.width,\r\n height: settings?.height,\r\n suffix: settings?.suffix,\r\n prefix: settings?.prefix,\r\n sources: settings?.sources,\r\n noOfXTicks: settings?.noOfXTicks,\r\n dateFormat: settings?.dateFormat,\r\n showValues: settings?.showValues,\r\n backgroundColor: settings?.backgroundColor,\r\n padding: settings?.padding,\r\n leftMargin: settings?.leftMargin,\r\n rightMargin: settings?.rightMargin,\r\n topMargin: settings?.topMargin,\r\n bottomMargin: settings?.bottomMargin,\r\n lineColors: settings?.lineColors,\r\n sameAxes: settings?.sameAxes,\r\n relativeHeight: settings?.relativeHeight,\r\n tooltip: settings?.tooltip,\r\n highlightAreaSettings: settings?.highlightAreaSettings as\r\n | HighlightAreaSettingsDataType[]\r\n | undefined,\r\n graphID: settings?.graphID,\r\n graphDownload: settings?.graphDownload,\r\n dataDownload: settings?.dataDownload,\r\n language: settings?.language,\r\n minHeight: settings?.minHeight,\r\n animate: settings?.animate,\r\n strokeWidth: settings?.strokeWidth,\r\n showDots: settings?.showDots,\r\n colorLegendTitle: settings?.colorLegendTitle,\r\n ariaLabel: settings?.ariaLabel,\r\n noOfYTicks: settings?.noOfYTicks,\r\n minDate: settings?.minDate,\r\n maxDate: settings?.maxDate,\r\n lineSuffixes: settings?.lineSuffixes,\r\n linePrefixes: settings?.linePrefixes,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n };\r\n case 'multiLineChart':\r\n return {\r\n customLayers: settings?.customLayers,\r\n precision: settings?.precision,\r\n theme: settings?.theme,\r\n dimmedOpacity: settings?.dimmedOpacity,\r\n data: graphData,\r\n curveType: settings?.curveType,\r\n lineColors: settings?.lineColors as string[] | undefined,\r\n graphTitle: settings?.graphTitle,\r\n graphDescription: settings?.graphDescription,\r\n footNote: settings?.footNote,\r\n width: settings?.width,\r\n height: settings?.height,\r\n sources: settings?.sources,\r\n noOfXTicks: settings?.noOfXTicks,\r\n dateFormat: settings?.dateFormat,\r\n suffix: settings?.suffix,\r\n prefix: settings?.prefix,\r\n showColorScale: settings?.showColorScale,\r\n labels:\r\n settings?.labels ||\r\n (getValues('y', graphDataConfiguration || [], readableHeader || []) as string[]),\r\n backgroundColor: settings?.backgroundColor,\r\n padding: settings?.padding,\r\n leftMargin: settings?.leftMargin,\r\n rightMargin: settings?.rightMargin,\r\n topMargin: settings?.topMargin,\r\n bottomMargin: settings?.bottomMargin,\r\n showValues: settings?.showValues,\r\n relativeHeight: settings?.relativeHeight,\r\n showColorLegendAtTop: settings?.showColorLegendAtTop,\r\n tooltip: settings?.tooltip,\r\n refValues: settings?.refValues,\r\n highlightAreaSettings: settings?.highlightAreaSettings as\r\n | HighlightAreaSettingsDataType[]\r\n | undefined,\r\n graphID: settings?.graphID,\r\n maxValue: settings?.maxValue,\r\n minValue: settings?.minValue,\r\n highlightedLines: settings?.highlightedLines,\r\n graphDownload: settings?.graphDownload,\r\n dataDownload: settings?.dataDownload,\r\n language: settings?.language,\r\n minHeight: settings?.minHeight,\r\n animate: settings?.animate,\r\n strokeWidth: settings?.strokeWidth,\r\n showDots: settings?.showDots,\r\n colorLegendTitle: settings?.colorLegendTitle,\r\n customHighlightAreaSettings: settings?.customHighlightAreaSettings,\r\n annotations: settings?.annotations,\r\n ariaLabel: settings?.ariaLabel,\r\n yAxisTitle: settings?.yAxisTitle,\r\n noOfYTicks: settings?.noOfYTicks,\r\n minDate: settings?.minDate,\r\n maxDate: settings?.maxDate,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n dashedLines: settings?.dashedLines,\r\n dashSettings: settings?.dashSettings,\r\n labelsToBeHidden: settings?.labelsToBeHidden,\r\n };\r\n case 'multiLineAltChart':\r\n return {\r\n naLabel: settings?.naLabel,\r\n customLayers: settings?.customLayers,\r\n precision: settings?.precision,\r\n theme: settings?.theme,\r\n data: graphData,\r\n dimmedOpacity: settings?.dimmedOpacity,\r\n curveType: settings?.curveType,\r\n colors: settings?.colors as string | string[] | undefined,\r\n graphTitle: settings?.graphTitle,\r\n graphDescription: settings?.graphDescription,\r\n footNote: settings?.footNote,\r\n width: settings?.width,\r\n height: settings?.height,\r\n sources: settings?.sources,\r\n noOfXTicks: settings?.noOfXTicks,\r\n dateFormat: settings?.dateFormat,\r\n suffix: settings?.suffix,\r\n prefix: settings?.prefix,\r\n backgroundColor: settings?.backgroundColor,\r\n padding: settings?.padding,\r\n leftMargin: settings?.leftMargin,\r\n rightMargin: settings?.rightMargin,\r\n topMargin: settings?.topMargin,\r\n bottomMargin: settings?.bottomMargin,\r\n relativeHeight: settings?.relativeHeight,\r\n tooltip: settings?.tooltip,\r\n refValues: settings?.refValues,\r\n showLabels: settings?.showLabels,\r\n highlightAreaSettings: settings?.highlightAreaSettings as\r\n | HighlightAreaSettingsDataType[]\r\n | undefined,\r\n graphID: settings?.graphID,\r\n maxValue: settings?.maxValue,\r\n minValue: settings?.minValue,\r\n highlightedLines: settings?.highlightedLines,\r\n graphDownload: settings?.graphDownload,\r\n dataDownload: settings?.dataDownload,\r\n language: settings?.language,\r\n minHeight: settings?.minHeight,\r\n animate: settings?.animate,\r\n strokeWidth: settings?.strokeWidth,\r\n showDots: settings?.showDots,\r\n colorLegendTitle: settings?.colorLegendTitle,\r\n customHighlightAreaSettings: settings?.customHighlightAreaSettings,\r\n annotations: settings?.annotations,\r\n ariaLabel: settings?.ariaLabel,\r\n yAxisTitle: settings?.yAxisTitle,\r\n noOfYTicks: settings?.noOfYTicks,\r\n minDate: settings?.minDate,\r\n maxDate: settings?.maxDate,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n colorDomain: settings?.colorDomain,\r\n showNAColor: settings?.showNAColor,\r\n };\r\n case 'differenceLineChart':\r\n return {\r\n customLayers: settings?.customLayers,\r\n precision: settings?.precision,\r\n theme: settings?.theme,\r\n data: graphData,\r\n curveType: settings?.curveType,\r\n lineColors: settings?.lineColors as [string, string] | undefined,\r\n diffAreaColors: settings?.diffAreaColors,\r\n graphTitle: settings?.graphTitle,\r\n graphDescription: settings?.graphDescription,\r\n footNote: settings?.footNote,\r\n width: settings?.width,\r\n height: settings?.height,\r\n sources: settings?.sources,\r\n noOfXTicks: settings?.noOfXTicks,\r\n dateFormat: settings?.dateFormat,\r\n suffix: settings?.suffix,\r\n prefix: settings?.prefix,\r\n labels: settings?.labels || [\r\n getValues('y1', graphDataConfiguration || [], readableHeader || []),\r\n getValues('y2', graphDataConfiguration || [], readableHeader || []),\r\n ],\r\n backgroundColor: settings?.backgroundColor,\r\n padding: settings?.padding,\r\n leftMargin: settings?.leftMargin,\r\n rightMargin: settings?.rightMargin,\r\n topMargin: settings?.topMargin,\r\n bottomMargin: settings?.bottomMargin,\r\n showValues: settings?.showValues,\r\n relativeHeight: settings?.relativeHeight,\r\n showColorLegendAtTop: settings?.showColorLegendAtTop,\r\n tooltip: settings?.tooltip,\r\n refValues: settings?.refValues,\r\n highlightAreaSettings: settings?.highlightAreaSettings as\r\n | HighlightAreaSettingsDataType[]\r\n | undefined,\r\n graphID: settings?.graphID,\r\n maxValue: settings?.maxValue,\r\n minValue: settings?.minValue,\r\n graphDownload: settings?.graphDownload,\r\n dataDownload: settings?.dataDownload,\r\n language: settings?.language,\r\n minHeight: settings?.minHeight,\r\n animate: settings?.animate,\r\n strokeWidth: settings?.strokeWidth,\r\n showDots: settings?.showDots,\r\n colorLegendTitle: settings?.colorLegendTitle,\r\n customHighlightAreaSettings: settings?.customHighlightAreaSettings,\r\n annotations: settings?.annotations,\r\n ariaLabel: settings?.ariaLabel,\r\n yAxisTitle: settings?.yAxisTitle,\r\n noOfYTicks: settings?.noOfYTicks,\r\n minDate: settings?.minDate,\r\n maxDate: settings?.maxDate,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n };\r\n case 'stackedAreaChart':\r\n return {\r\n customLayers: settings?.customLayers,\r\n precision: settings?.precision,\r\n theme: settings?.theme,\r\n data: graphData,\r\n curveType: settings?.curveType,\r\n colors: settings?.colors as string[] | undefined,\r\n graphTitle: settings?.graphTitle,\r\n graphDescription: settings?.graphDescription,\r\n footNote: settings?.footNote,\r\n width: settings?.width,\r\n height: settings?.height,\r\n sources: settings?.sources,\r\n noOfXTicks: settings?.noOfXTicks,\r\n dateFormat: settings?.dateFormat,\r\n colorDomain:\r\n settings?.colorDomain ||\r\n (getValues('y', graphDataConfiguration || [], readableHeader || []) as string[]),\r\n backgroundColor: settings?.backgroundColor,\r\n padding: settings?.padding,\r\n colorLegendTitle: settings?.colorLegendTitle,\r\n leftMargin: settings?.leftMargin,\r\n rightMargin: settings?.rightMargin,\r\n topMargin: settings?.topMargin,\r\n relativeHeight: settings?.relativeHeight,\r\n bottomMargin: settings?.bottomMargin,\r\n tooltip: settings?.tooltip,\r\n refValues: settings?.refValues,\r\n highlightAreaSettings: settings?.highlightAreaSettings as\r\n | HighlightAreaSettingsDataType[]\r\n | undefined,\r\n graphID: settings?.graphID,\r\n maxValue: settings?.maxValue,\r\n minValue: settings?.minValue,\r\n graphDownload: settings?.graphDownload,\r\n dataDownload: settings?.dataDownload,\r\n showColorScale: settings?.showColorScale,\r\n language: settings?.language,\r\n minHeight: settings?.minHeight,\r\n customHighlightAreaSettings: settings?.customHighlightAreaSettings,\r\n annotations: settings?.annotations,\r\n ariaLabel: settings?.ariaLabel,\r\n yAxisTitle: settings?.yAxisTitle,\r\n noOfYTicks: settings?.noOfYTicks,\r\n suffix: settings?.suffix,\r\n prefix: settings?.prefix,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n };\r\n case 'choroplethMap':\r\n return {\r\n timeline: settings?.timeline,\r\n customLayers: settings?.customLayers,\r\n theme: settings?.theme,\r\n dimmedOpacity: settings?.dimmedOpacity,\r\n resetSelectionOnDoubleClick: settings?.resetSelectionOnDoubleClick,\r\n graphTitle: settings?.graphTitle,\r\n mapData: settings?.mapData,\r\n mapProjection: settings?.mapProjection,\r\n graphDescription: settings?.graphDescription,\r\n footNote: settings?.footNote,\r\n width: settings?.width,\r\n height: settings?.height,\r\n sources: settings?.sources,\r\n colorDomain: settings?.colorDomain as string[] | number[],\r\n colors: settings?.colors as string[] | undefined,\r\n colorLegendTitle:\r\n Object.keys(settings || {}).indexOf('colorLegendTitle') !== -1\r\n ? settings?.colorLegendTitle\r\n : getValues('x', graphDataConfiguration || [], readableHeader || []),\r\n scaleType: settings?.scaleType,\r\n categorical: settings?.categorical,\r\n data: graphData,\r\n scale: settings?.scale,\r\n centerPoint: settings?.centerPoint,\r\n backgroundColor: settings?.backgroundColor,\r\n mapBorderWidth: settings?.mapBorderWidth,\r\n mapNoDataColor: settings?.mapNoDataColor,\r\n mapBorderColor: settings?.mapBorderColor,\r\n relativeHeight: settings?.relativeHeight,\r\n padding: settings?.padding,\r\n isWorldMap: settings?.isWorldMap,\r\n tooltip: settings?.tooltip,\r\n showColorScale: settings?.showColorScale,\r\n zoomScaleExtend: settings?.zoomScaleExtend,\r\n zoomTranslateExtend: settings?.zoomTranslateExtend,\r\n graphID: settings?.graphID,\r\n highlightedIds: settings?.highlightedIds,\r\n graphDownload: settings?.graphDownload,\r\n dataDownload: settings?.dataDownload,\r\n mapProperty: settings?.mapProperty,\r\n showAntarctica: settings?.showAntarctica,\r\n language: settings?.language,\r\n minHeight: settings?.minHeight,\r\n ariaLabel: settings?.ariaLabel,\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n onSeriesMouseClick: (el: any) => {\r\n updateFilters?.(el.id);\r\n },\r\n detailsOnClick: settings?.detailsOnClick,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n zoomInteraction: settings?.zoomInteraction,\r\n animate: settings?.animate,\r\n };\r\n case 'biVariateChoroplethMap':\r\n return {\r\n timeline: settings?.timeline,\r\n customLayers: settings?.customLayers,\r\n theme: settings?.theme,\r\n dimmedOpacity: settings?.dimmedOpacity,\r\n resetSelectionOnDoubleClick: settings?.resetSelectionOnDoubleClick,\r\n data: graphData,\r\n mapData: settings?.mapData,\r\n mapProjection: settings?.mapProjection,\r\n graphTitle: settings?.graphTitle,\r\n graphDescription: settings?.graphDescription,\r\n footNote: settings?.footNote,\r\n width: settings?.width,\r\n height: settings?.height,\r\n sources: settings?.sources,\r\n xColorLegendTitle:\r\n Object.keys(settings || {}).indexOf('xColorLegendTitle') !== -1\r\n ? settings?.xColorLegendTitle\r\n : getValues('x', graphDataConfiguration || [], readableHeader || []),\r\n yColorLegendTitle:\r\n Object.keys(settings || {}).indexOf('yColorLegendTitle') !== -1\r\n ? settings?.yColorLegendTitle\r\n : getValues('y', graphDataConfiguration || [], readableHeader || []),\r\n xDomain: settings?.xDomain as [number, number, number, number],\r\n yDomain: settings?.yDomain as [number, number, number, number],\r\n colors: settings?.colors as string[][] | undefined,\r\n scale: settings?.scale,\r\n centerPoint: settings?.centerPoint,\r\n backgroundColor: settings?.backgroundColor,\r\n mapBorderWidth: settings?.mapBorderWidth,\r\n mapNoDataColor: settings?.mapNoDataColor,\r\n padding: settings?.padding,\r\n mapBorderColor: settings?.mapBorderColor,\r\n relativeHeight: settings?.relativeHeight,\r\n tooltip: settings?.tooltip,\r\n isWorldMap: settings?.isWorldMap,\r\n zoomScaleExtend: settings?.zoomScaleExtend,\r\n zoomTranslateExtend: settings?.zoomTranslateExtend,\r\n graphID: settings?.graphID,\r\n highlightedIds: settings?.highlightedIds,\r\n mapProperty: settings?.mapProperty,\r\n graphDownload: settings?.graphDownload,\r\n dataDownload: settings?.dataDownload,\r\n showAntarctica: settings?.showAntarctica,\r\n language: settings?.language,\r\n minHeight: settings?.minHeight,\r\n ariaLabel: settings?.ariaLabel,\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n onSeriesMouseClick: (el: any) => {\r\n updateFilters?.(el.id);\r\n },\r\n detailsOnClick: settings?.detailsOnClick,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n zoomInteraction: settings?.zoomInteraction,\r\n animate: settings?.animate,\r\n };\r\n case 'dotDensityMap':\r\n return {\r\n timeline: settings?.timeline,\r\n customLayers: settings?.customLayers,\r\n theme: settings?.theme,\r\n dimmedOpacity: settings?.dimmedOpacity,\r\n resetSelectionOnDoubleClick: settings?.resetSelectionOnDoubleClick,\r\n graphTitle: settings?.graphTitle,\r\n mapData: settings?.mapData,\r\n mapProjection: settings?.mapProjection,\r\n graphDescription: settings?.graphDescription,\r\n footNote: settings?.footNote,\r\n maxRadiusValue: settings?.maxRadiusValue,\r\n width: settings?.width,\r\n height: settings?.height,\r\n radius: settings?.radius,\r\n sources: settings?.sources,\r\n colors: settings?.colors as string | string[] | undefined,\r\n colorDomain: settings?.colorDomain,\r\n colorLegendTitle:\r\n Object.keys(settings || {}).indexOf('colorLegendTitle') !== -1\r\n ? settings?.colorLegendTitle\r\n : getValues('color', graphDataConfiguration || [], readableHeader || []),\r\n data: graphData,\r\n scale: settings?.scale,\r\n centerPoint: settings?.centerPoint,\r\n backgroundColor: settings?.backgroundColor,\r\n mapBorderWidth: settings?.mapBorderWidth,\r\n mapNoDataColor: settings?.mapNoDataColor,\r\n mapBorderColor: settings?.mapBorderColor,\r\n padding: settings?.padding,\r\n showLabels: settings?.showLabels,\r\n relativeHeight: settings?.relativeHeight,\r\n isWorldMap: settings?.isWorldMap,\r\n tooltip: settings?.tooltip,\r\n showColorScale: settings?.showColorScale,\r\n zoomScaleExtend: settings?.zoomScaleExtend,\r\n zoomTranslateExtend: settings?.zoomTranslateExtend,\r\n graphID: settings?.graphID,\r\n highlightedDataPoints: settings?.highlightedDataPoints,\r\n graphDownload: settings?.graphDownload,\r\n dataDownload: settings?.dataDownload,\r\n showAntarctica: settings?.showAntarctica,\r\n language: settings?.language,\r\n minHeight: settings?.minHeight,\r\n ariaLabel: settings?.ariaLabel,\r\n detailsOnClick: settings?.detailsOnClick,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n zoomInteraction: settings?.zoomInteraction,\r\n animate: settings?.animate,\r\n };\r\n case 'donutChart':\r\n return {\r\n precision: settings?.precision,\r\n theme: settings?.theme,\r\n resetSelectionOnDoubleClick: settings?.resetSelectionOnDoubleClick,\r\n mainText: settings?.mainText,\r\n data: graphData,\r\n colors: settings?.colors as string[] | undefined,\r\n graphTitle: settings?.graphTitle,\r\n suffix: settings?.suffix,\r\n prefix: settings?.prefix,\r\n sources: settings?.sources,\r\n graphDescription: settings?.graphDescription,\r\n subNote: settings?.subNote,\r\n footNote: settings?.footNote,\r\n radius: settings?.radius,\r\n strokeWidth: settings?.strokeWidth,\r\n showColorScale: settings?.showColorScale,\r\n backgroundColor: settings?.backgroundColor,\r\n padding: settings?.padding,\r\n tooltip: settings?.tooltip,\r\n graphID: settings?.graphID,\r\n graphDownload: settings?.graphDownload,\r\n dataDownload: settings?.dataDownload,\r\n colorDomain: settings?.colorDomain,\r\n sortData: settings?.sortData,\r\n language: settings?.language,\r\n width: settings?.width,\r\n height: settings?.height,\r\n minHeight: settings?.minHeight,\r\n relativeHeight: settings?.relativeHeight,\r\n topMargin: settings?.topMargin,\r\n bottomMargin: settings?.bottomMargin,\r\n ariaLabel: settings?.ariaLabel,\r\n legendMaxWidth: settings?.legendMaxWidth,\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n onSeriesMouseClick: (el: any) => {\r\n updateFilters?.(el.label);\r\n },\r\n detailsOnClick: settings?.detailsOnClick,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n colorScaleMaxWidth: settings?.colorScaleMaxWidth,\r\n };\r\n case 'slopeChart':\r\n return {\r\n customLayers: settings?.customLayers,\r\n theme: settings?.theme,\r\n dimmedOpacity: settings?.dimmedOpacity,\r\n resetSelectionOnDoubleClick: settings?.resetSelectionOnDoubleClick,\r\n data: graphData,\r\n graphTitle: settings?.graphTitle,\r\n graphDescription: settings?.graphDescription,\r\n footNote: settings?.footNote,\r\n width: settings?.width,\r\n height: settings?.height,\r\n sources: settings?.sources,\r\n showLabels: settings?.showLabels,\r\n colors: settings?.colors as string | string[] | undefined,\r\n colorDomain: settings?.colorDomain,\r\n colorLegendTitle:\r\n Object.keys(settings || {}).indexOf('colorLegendTitle') !== -1\r\n ? settings?.colorLegendTitle\r\n : getValues('color', graphDataConfiguration || [], readableHeader || []),\r\n radius: settings?.radius,\r\n axisTitles: settings?.axisTitles,\r\n backgroundColor: settings?.backgroundColor,\r\n padding: settings?.padding,\r\n leftMargin: settings?.leftMargin,\r\n rightMargin: settings?.rightMargin,\r\n topMargin: settings?.topMargin,\r\n bottomMargin: settings?.bottomMargin,\r\n relativeHeight: settings?.relativeHeight,\r\n tooltip: settings?.tooltip,\r\n highlightedDataPoints: settings?.highlightedDataPoints,\r\n showColorScale: settings?.showColorScale,\r\n graphID: settings?.graphID,\r\n maxValue: settings?.maxValue,\r\n minValue: settings?.minValue,\r\n graphDownload: settings?.graphDownload,\r\n dataDownload: settings?.dataDownload,\r\n fillContainer: settings?.fillContainer,\r\n language: settings?.language,\r\n minHeight: settings?.minHeight,\r\n ariaLabel: settings?.ariaLabel,\r\n detailsOnClick: settings?.detailsOnClick,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n animate: settings?.animate,\r\n };\r\n case 'scatterPlot':\r\n return {\r\n timeline: settings?.timeline,\r\n customLayers: settings?.customLayers,\r\n precision: settings?.precision,\r\n theme: settings?.theme,\r\n dimmedOpacity: settings?.dimmedOpacity,\r\n resetSelectionOnDoubleClick: settings?.resetSelectionOnDoubleClick,\r\n data: graphData,\r\n graphTitle: settings?.graphTitle,\r\n graphDescription: settings?.graphDescription,\r\n footNote: settings?.footNote,\r\n width: settings?.width,\r\n height: settings?.height,\r\n sources: settings?.sources,\r\n showLabels: settings?.showLabels,\r\n colors: settings?.colors as string | string[] | undefined,\r\n colorDomain: settings?.colorDomain,\r\n colorLegendTitle:\r\n Object.keys(settings || {}).indexOf('colorLegendTitle') !== -1\r\n ? settings?.colorLegendTitle\r\n : getValues('color', graphDataConfiguration || [], readableHeader || []),\r\n radius: settings?.radius,\r\n xAxisTitle:\r\n Object.keys(settings || {}).indexOf('xAxisTitle') !== -1\r\n ? settings?.xAxisTitle\r\n : getValues('x', graphDataConfiguration || [], readableHeader || []),\r\n yAxisTitle:\r\n Object.keys(settings || {}).indexOf('yAxisTitle') !== -1\r\n ? settings?.yAxisTitle\r\n : getValues('y', graphDataConfiguration || [], readableHeader || []),\r\n backgroundColor: settings?.backgroundColor,\r\n padding: settings?.padding,\r\n leftMargin: settings?.leftMargin,\r\n rightMargin: settings?.rightMargin,\r\n topMargin: settings?.topMargin,\r\n bottomMargin: settings?.bottomMargin,\r\n relativeHeight: settings?.relativeHeight,\r\n tooltip: settings?.tooltip,\r\n refXValues: settings?.refXValues,\r\n refYValues: settings?.refYValues,\r\n highlightedDataPoints: settings?.highlightedDataPoints,\r\n highlightAreaSettings: settings?.highlightAreaSettings as\r\n | HighlightAreaSettingsForScatterPlotDataType[]\r\n | undefined,\r\n showColorScale: settings?.showColorScale,\r\n graphID: settings?.graphID,\r\n maxRadiusValue: settings?.maxRadiusValue,\r\n maxXValue: settings?.maxXValue,\r\n minXValue: settings?.minXValue,\r\n maxYValue: settings?.maxYValue,\r\n minYValue: settings?.minYValue,\r\n graphDownload: settings?.graphDownload,\r\n dataDownload: settings?.dataDownload,\r\n language: settings?.language,\r\n minHeight: settings?.minHeight,\r\n showNAColor: settings?.showNAColor,\r\n customHighlightAreaSettings: settings?.customHighlightAreaSettings,\r\n annotations: settings?.annotations,\r\n regressionLine: settings?.regressionLine,\r\n ariaLabel: settings?.ariaLabel,\r\n detailsOnClick: settings?.detailsOnClick,\r\n noOfXTicks: settings?.noOfXTicks,\r\n noOfYTicks: settings?.noOfYTicks,\r\n labelColor: settings?.labelColor,\r\n xSuffix: settings?.xSuffix,\r\n ySuffix: settings?.ySuffix,\r\n xPrefix: settings?.xPrefix,\r\n yPrefix: settings?.yPrefix,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n animate: settings?.animate,\r\n };\r\n case 'dumbbellChart':\r\n return {\r\n timeline: settings?.timeline,\r\n customLayers: settings?.customLayers,\r\n precision: settings?.precision,\r\n theme: settings?.theme,\r\n orientation: settings?.orientation,\r\n refValues: settings?.refValues,\r\n resetSelectionOnDoubleClick: settings?.resetSelectionOnDoubleClick,\r\n data: graphData,\r\n colors: settings?.colors as string[] | undefined,\r\n graphTitle: settings?.graphTitle,\r\n graphDescription: settings?.graphDescription,\r\n footNote: settings?.footNote,\r\n width: settings?.width,\r\n height: settings?.height,\r\n sources: settings?.sources,\r\n barPadding: settings?.barPadding,\r\n showTicks: settings?.showTicks,\r\n leftMargin: settings?.leftMargin,\r\n rightMargin: settings?.rightMargin,\r\n topMargin: settings?.topMargin,\r\n bottomMargin: settings?.bottomMargin,\r\n truncateBy: settings?.truncateBy,\r\n labelOrder: settings?.labelOrder,\r\n showColorScale: settings?.showColorScale,\r\n colorDomain:\r\n settings?.colorDomain ||\r\n (getValues('x', graphDataConfiguration || [], readableHeader || []) as string[]),\r\n colorLegendTitle: settings?.colorLegendTitle,\r\n backgroundColor: settings?.backgroundColor,\r\n padding: settings?.padding,\r\n radius: settings?.radius,\r\n relativeHeight: settings?.relativeHeight,\r\n showValues: settings?.showValues,\r\n showLabels: settings?.showLabels,\r\n tooltip: settings?.tooltip,\r\n graphID: settings?.graphID,\r\n maxValue: settings?.maxValue,\r\n minValue: settings?.minValue,\r\n graphDownload: settings?.graphDownload,\r\n dataDownload: settings?.dataDownload,\r\n suffix: settings?.suffix,\r\n prefix: settings?.prefix,\r\n language: settings?.language,\r\n minHeight: settings?.minHeight,\r\n sortParameter: settings?.sortParameter,\r\n sortData: settings?.sortData,\r\n arrowConnector: settings?.arrowConnector,\r\n connectorStrokeWidth: settings?.connectorStrokeWidth,\r\n maxBarThickness: settings?.maxBarThickness,\r\n minBarThickness: settings?.minBarThickness,\r\n maxNumberOfBars: settings?.maxNumberOfBars,\r\n ariaLabel: settings?.ariaLabel,\r\n detailsOnClick: settings?.detailsOnClick,\r\n axisTitle: settings?.axisTitle,\r\n noOfTicks: settings?.noOfTicks,\r\n valueColor: settings?.valueColor,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n animate: settings?.animate,\r\n highlightedDataPoints: settings?.highlightedDataPoints,\r\n dimmedOpacity: settings?.dimmedOpacity,\r\n };\r\n case 'treeMap':\r\n return {\r\n precision: settings?.precision,\r\n theme: settings?.theme,\r\n dimmedOpacity: settings?.dimmedOpacity,\r\n resetSelectionOnDoubleClick: settings?.resetSelectionOnDoubleClick,\r\n data: graphData,\r\n colors: settings?.colors as string | string[] | undefined,\r\n graphTitle: settings?.graphTitle,\r\n graphDescription: settings?.graphDescription,\r\n footNote: settings?.footNote,\r\n width: settings?.width,\r\n height: settings?.height,\r\n suffix: settings?.suffix,\r\n prefix: settings?.prefix,\r\n sources: settings?.sources,\r\n leftMargin: settings?.leftMargin,\r\n rightMargin: settings?.rightMargin,\r\n colorDomain: settings?.colorDomain,\r\n colorLegendTitle:\r\n Object.keys(settings || {}).indexOf('colorLegendTitle') !== -1\r\n ? settings?.colorLegendTitle\r\n : getValues('color', graphDataConfiguration || [], readableHeader || []),\r\n backgroundColor: settings?.backgroundColor,\r\n padding: settings?.padding,\r\n topMargin: settings?.topMargin,\r\n bottomMargin: settings?.bottomMargin,\r\n relativeHeight: settings?.relativeHeight,\r\n showLabels: settings?.showLabels,\r\n tooltip: settings?.tooltip,\r\n showColorScale: settings?.showColorScale,\r\n showValues: settings?.showValues,\r\n graphID: settings?.graphID,\r\n highlightedDataPoints: settings?.highlightedDataPoints,\r\n graphDownload: settings?.graphDownload,\r\n dataDownload: settings?.dataDownload,\r\n language: settings?.language,\r\n minHeight: settings?.minHeight,\r\n showNAColor: settings?.showNAColor,\r\n ariaLabel: settings?.ariaLabel,\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n onSeriesMouseClick: (el: any) => {\r\n updateFilters?.(el.label);\r\n },\r\n detailsOnClick: settings?.detailsOnClick,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n animate: settings?.animate,\r\n };\r\n case 'circlePacking':\r\n return {\r\n precision: settings?.precision,\r\n theme: settings?.theme,\r\n dimmedOpacity: settings?.dimmedOpacity,\r\n resetSelectionOnDoubleClick: settings?.resetSelectionOnDoubleClick,\r\n data: graphData,\r\n colors: settings?.colors as string | string[] | undefined,\r\n graphTitle: settings?.graphTitle,\r\n graphDescription: settings?.graphDescription,\r\n footNote: settings?.footNote,\r\n width: settings?.width,\r\n height: settings?.height,\r\n suffix: settings?.suffix,\r\n prefix: settings?.prefix,\r\n sources: settings?.sources,\r\n leftMargin: settings?.leftMargin,\r\n rightMargin: settings?.rightMargin,\r\n colorDomain: settings?.colorDomain,\r\n colorLegendTitle:\r\n Object.keys(settings || {}).indexOf('colorLegendTitle') !== -1\r\n ? settings?.colorLegendTitle\r\n : getValues('color', graphDataConfiguration || [], readableHeader || []),\r\n backgroundColor: settings?.backgroundColor,\r\n padding: settings?.padding,\r\n topMargin: settings?.topMargin,\r\n bottomMargin: settings?.bottomMargin,\r\n relativeHeight: settings?.relativeHeight,\r\n showLabels: settings?.showLabels,\r\n tooltip: settings?.tooltip,\r\n showColorScale: settings?.showColorScale,\r\n showValues: settings?.showValues,\r\n graphID: settings?.graphID,\r\n highlightedDataPoints: settings?.highlightedDataPoints,\r\n graphDownload: settings?.graphDownload,\r\n dataDownload: settings?.dataDownload,\r\n language: settings?.language,\r\n minHeight: settings?.minHeight,\r\n showNAColor: settings?.showNAColor,\r\n ariaLabel: settings?.ariaLabel,\r\n radius: settings?.radius,\r\n maxRadiusValue: settings?.maxRadiusValue,\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n onSeriesMouseClick: (el: any) => {\r\n updateFilters?.(el.label);\r\n },\r\n detailsOnClick: settings?.detailsOnClick,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n animate: settings?.animate,\r\n };\r\n case 'heatMap':\r\n return {\r\n precision: settings?.precision,\r\n theme: settings?.theme,\r\n resetSelectionOnDoubleClick: settings?.resetSelectionOnDoubleClick,\r\n data: graphData,\r\n colors: settings?.colors as string[] | undefined,\r\n graphTitle: settings?.graphTitle,\r\n graphDescription: settings?.graphDescription,\r\n footNote: settings?.footNote,\r\n width: settings?.width,\r\n height: settings?.height,\r\n sources: settings?.sources,\r\n scaleType: settings?.scaleType,\r\n colorDomain: settings?.colorDomain as string[] | number[],\r\n showColumnLabels: settings?.showColumnLabels,\r\n leftMargin: settings?.leftMargin,\r\n rightMargin: settings?.rightMargin,\r\n truncateBy: settings?.truncateBy,\r\n colorLegendTitle:\r\n Object.keys(settings || {}).indexOf('colorLegendTitle') !== -1\r\n ? settings?.colorLegendTitle\r\n : getValues('color', graphDataConfiguration || [], readableHeader || []),\r\n backgroundColor: settings?.backgroundColor,\r\n padding: settings?.padding,\r\n topMargin: settings?.topMargin,\r\n bottomMargin: settings?.bottomMargin,\r\n suffix: settings?.suffix,\r\n prefix: settings?.prefix,\r\n showValues: settings?.showValues,\r\n showRowLabels: settings?.showRowLabels,\r\n relativeHeight: settings?.relativeHeight,\r\n tooltip: settings?.tooltip,\r\n graphID: settings?.graphID,\r\n noDataColor: settings?.noDataColor,\r\n showColorScale: settings?.showColorScale,\r\n graphDownload: settings?.graphDownload,\r\n dataDownload: settings?.dataDownload,\r\n fillContainer: settings?.fillContainer,\r\n language: settings?.language,\r\n minHeight: settings?.minHeight,\r\n showNAColor: settings?.showNAColor,\r\n ariaLabel: settings?.ariaLabel,\r\n detailsOnClick: settings?.detailsOnClick,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n animate: settings?.animate,\r\n };\r\n case 'stripChart':\r\n return {\r\n customLayers: settings?.customLayers,\r\n precision: settings?.precision,\r\n theme: settings?.theme,\r\n dimmedOpacity: settings?.dimmedOpacity,\r\n orientation: settings?.orientation,\r\n resetSelectionOnDoubleClick: settings?.resetSelectionOnDoubleClick,\r\n data: graphData,\r\n graphTitle: settings?.graphTitle,\r\n graphDescription: settings?.graphDescription,\r\n footNote: settings?.footNote,\r\n width: settings?.width,\r\n height: settings?.height,\r\n sources: settings?.sources,\r\n colors: settings?.colors as string | string[] | undefined,\r\n colorDomain: settings?.colorDomain,\r\n colorLegendTitle:\r\n Object.keys(settings || {}).indexOf('colorLegendTitle') !== -1\r\n ? settings?.colorLegendTitle\r\n : getValues('color', graphDataConfiguration || [], readableHeader || []),\r\n radius: settings?.radius,\r\n backgroundColor: settings?.backgroundColor,\r\n padding: settings?.padding,\r\n leftMargin: settings?.leftMargin,\r\n rightMargin: settings?.rightMargin,\r\n topMargin: settings?.topMargin,\r\n bottomMargin: settings?.bottomMargin,\r\n relativeHeight: settings?.relativeHeight,\r\n tooltip: settings?.tooltip,\r\n highlightedDataPoints: settings?.highlightedDataPoints,\r\n showColorScale: settings?.showColorScale,\r\n graphID: settings?.graphID,\r\n maxValue: settings?.maxValue,\r\n minValue: settings?.minValue,\r\n noOfTicks: settings?.noOfTicks,\r\n graphDownload: settings?.graphDownload,\r\n dataDownload: settings?.dataDownload,\r\n prefix: settings?.prefix,\r\n suffix: settings?.suffix,\r\n stripType: settings?.stripType,\r\n valueColor: settings?.valueColor,\r\n language: settings?.language,\r\n minHeight: settings?.minHeight,\r\n highlightColor: settings?.highlightColor,\r\n dotOpacity: settings?.dotOpacity,\r\n showNAColor: settings?.showNAColor,\r\n ariaLabel: settings?.ariaLabel,\r\n detailsOnClick: settings?.detailsOnClick,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n animate: settings?.animate,\r\n };\r\n case 'beeSwarmChart':\r\n return {\r\n customLayers: settings?.customLayers,\r\n precision: settings?.precision,\r\n theme: settings?.theme,\r\n dimmedOpacity: settings?.dimmedOpacity,\r\n resetSelectionOnDoubleClick: settings?.resetSelectionOnDoubleClick,\r\n data: graphData,\r\n colors: settings?.colors as string | string[] | undefined,\r\n graphTitle: settings?.graphTitle,\r\n graphDescription: settings?.graphDescription,\r\n footNote: settings?.footNote,\r\n width: settings?.width,\r\n height: settings?.height,\r\n sources: settings?.sources,\r\n showTicks: settings?.showTicks,\r\n leftMargin: settings?.leftMargin,\r\n rightMargin: settings?.rightMargin,\r\n colorDomain: settings?.colorDomain,\r\n colorLegendTitle:\r\n Object.keys(settings || {}).indexOf('colorLegendTitle') !== -1\r\n ? settings?.colorLegendTitle\r\n : getValues('color', graphDataConfiguration || [], readableHeader || []),\r\n backgroundColor: settings?.backgroundColor,\r\n padding: settings?.padding,\r\n topMargin: settings?.topMargin,\r\n bottomMargin: settings?.bottomMargin,\r\n relativeHeight: settings?.relativeHeight,\r\n showLabels: settings?.showLabels,\r\n showColorScale: settings?.showColorScale,\r\n tooltip: settings?.tooltip,\r\n refValues: settings?.refValues,\r\n graphID: settings?.graphID,\r\n radius: settings?.radius,\r\n maxRadiusValue: settings?.maxRadiusValue,\r\n maxValue: settings?.maxValue,\r\n minValue: settings?.minValue,\r\n highlightedDataPoints: settings?.highlightedDataPoints,\r\n graphDownload: settings?.graphDownload,\r\n dataDownload: settings?.dataDownload,\r\n language: settings?.language,\r\n minHeight: settings?.minHeight,\r\n showNAColor: settings?.showNAColor,\r\n ariaLabel: settings?.ariaLabel,\r\n detailsOnClick: settings?.detailsOnClick,\r\n orientation: settings?.orientation,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n animate: settings?.animate,\r\n };\r\n case 'butterflyChart':\r\n return {\r\n naLabel: settings?.naLabel,\r\n timeline: settings?.timeline,\r\n customLayers: settings?.customLayers,\r\n precision: settings?.precision,\r\n theme: settings?.theme,\r\n resetSelectionOnDoubleClick: settings?.resetSelectionOnDoubleClick,\r\n data: graphData,\r\n graphTitle: settings?.graphTitle,\r\n graphDescription: settings?.graphDescription,\r\n leftBarTitle:\r\n Object.keys(settings || {}).indexOf('leftBarTitle') !== -1\r\n ? settings?.leftBarTitle\r\n : getValues('leftBar', graphDataConfiguration || [], readableHeader || []),\r\n rightBarTitle:\r\n Object.keys(settings || {}).indexOf('rightBarTitle') !== -1\r\n ? settings?.rightBarTitle\r\n : getValues('rightBar', graphDataConfiguration || [], readableHeader || []),\r\n footNote: settings?.footNote,\r\n width: settings?.width,\r\n height: settings?.height,\r\n sources: settings?.sources,\r\n backgroundColor: settings?.backgroundColor,\r\n padding: settings?.padding,\r\n leftMargin: settings?.leftMargin,\r\n rightMargin: settings?.rightMargin,\r\n topMargin: settings?.topMargin,\r\n bottomMargin: settings?.bottomMargin,\r\n barColors: settings?.barColors,\r\n relativeHeight: settings?.relativeHeight,\r\n tooltip: settings?.tooltip,\r\n graphID: settings?.graphID,\r\n graphDownload: settings?.graphDownload,\r\n dataDownload: settings?.dataDownload,\r\n barPadding: settings?.barPadding,\r\n truncateBy: settings?.truncateBy,\r\n suffix: settings?.suffix,\r\n prefix: settings?.prefix,\r\n showTicks: settings?.showTicks,\r\n showValues: settings?.showValues,\r\n centerGap: settings?.centerGap,\r\n maxValue: settings?.maxValue,\r\n minValue: settings?.minValue,\r\n showColorScale: settings?.showColorScale,\r\n refValues: settings?.refValues,\r\n language: settings?.language,\r\n minHeight: settings?.minHeight,\r\n ariaLabel: settings?.ariaLabel,\r\n detailsOnClick: settings?.detailsOnClick,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n animate: settings?.animate,\r\n };\r\n case 'histogram':\r\n return {\r\n precision: settings?.precision,\r\n theme: settings?.theme,\r\n data: graphData,\r\n colors: settings?.colors,\r\n graphTitle: settings?.graphTitle,\r\n graphDescription: settings?.graphDescription,\r\n footNote: settings?.footNote,\r\n width: settings?.width,\r\n height: settings?.height,\r\n sources: settings?.sources,\r\n barPadding: settings?.barPadding,\r\n showValues: settings?.showValues,\r\n showTicks: settings?.showTicks,\r\n leftMargin: settings?.leftMargin,\r\n rightMargin: settings?.rightMargin,\r\n backgroundColor: settings?.backgroundColor,\r\n padding: settings?.padding,\r\n topMargin: settings?.topMargin,\r\n bottomMargin: settings?.bottomMargin,\r\n relativeHeight: settings?.relativeHeight,\r\n showLabels: settings?.showLabels,\r\n maxValue: settings?.maxValue,\r\n tooltip: settings?.tooltip,\r\n refValues: settings?.refValues,\r\n graphID: settings?.graphID,\r\n graphDownload: settings?.graphDownload,\r\n dataDownload: settings?.dataDownload,\r\n numberOfBins: settings?.numberOfBins,\r\n truncateBy: settings?.truncateBy,\r\n donutStrokeWidth: settings?.donutStrokeWidth,\r\n sortData: settings?.sortData,\r\n barGraphLayout: settings?.barGraphLayout,\r\n graphType: settings?.graphType,\r\n language: settings?.language,\r\n minHeight: settings?.minHeight,\r\n maxBarThickness: settings?.maxBarThickness,\r\n ariaLabel: settings?.ariaLabel,\r\n detailsOnClick: settings?.detailsOnClick,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n };\r\n case 'sparkLine':\r\n return {\r\n customLayers: settings?.customLayers,\r\n theme: settings?.theme,\r\n data: graphData,\r\n curveType: settings?.curveType,\r\n lineColor: settings?.lineColor as string | undefined,\r\n graphTitle: settings?.graphTitle,\r\n graphDescription: settings?.graphDescription,\r\n footNote: settings?.footNote,\r\n width: settings?.width,\r\n height: settings?.height,\r\n sources: settings?.sources,\r\n dateFormat: settings?.dateFormat,\r\n area: settings?.area,\r\n backgroundColor: settings?.backgroundColor,\r\n padding: settings?.padding,\r\n leftMargin: settings?.leftMargin,\r\n rightMargin: settings?.rightMargin,\r\n topMargin: settings?.topMargin,\r\n bottomMargin: settings?.bottomMargin,\r\n relativeHeight: settings?.relativeHeight,\r\n tooltip: settings?.tooltip,\r\n graphID: settings?.graphID,\r\n maxValue: settings?.maxValue,\r\n minValue: settings?.minValue,\r\n graphDownload: settings?.graphDownload,\r\n dataDownload: settings?.dataDownload,\r\n language: settings?.language,\r\n minHeight: settings?.minHeight,\r\n ariaLabel: settings?.ariaLabel,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n };\r\n case 'paretoChart':\r\n return {\r\n showAxisLabel: settings?.showAxisLabels,\r\n showColorScale: settings?.showColorScale,\r\n naLabel: settings?.naLabel,\r\n customLayers: settings?.customLayers,\r\n precision: settings?.precision,\r\n theme: settings?.theme,\r\n resetSelectionOnDoubleClick: settings?.resetSelectionOnDoubleClick,\r\n data: graphData,\r\n showValues: settings?.showValues,\r\n graphTitle: settings?.graphTitle,\r\n graphDescription: settings?.graphDescription,\r\n barTitle:\r\n Object.keys(settings || {}).indexOf('barTitle') !== -1\r\n ? settings?.barTitle\r\n : getValues('barTitle', graphDataConfiguration || [], readableHeader || []),\r\n lineTitle:\r\n Object.keys(settings || {}).indexOf('lineTitle') !== -1\r\n ? settings?.lineTitle\r\n : getValues('lineTitle', graphDataConfiguration || [], readableHeader || []),\r\n footNote: settings?.footNote,\r\n width: settings?.width,\r\n height: settings?.height,\r\n sources: settings?.sources,\r\n backgroundColor: settings?.backgroundColor,\r\n padding: settings?.padding,\r\n leftMargin: settings?.leftMargin,\r\n rightMargin: settings?.rightMargin,\r\n topMargin: settings?.topMargin,\r\n bottomMargin: settings?.bottomMargin,\r\n barColor: settings?.barColor,\r\n curveType: settings?.curveType,\r\n lineColor: settings?.lineColor,\r\n sameAxes: settings?.sameAxes,\r\n relativeHeight: settings?.relativeHeight,\r\n tooltip: settings?.tooltip,\r\n graphID: settings?.graphID,\r\n graphDownload: settings?.graphDownload,\r\n dataDownload: settings?.dataDownload,\r\n barPadding: settings?.barPadding,\r\n truncateBy: settings?.truncateBy,\r\n showLabels: settings?.showLabels,\r\n language: settings?.language,\r\n minHeight: settings?.minHeight,\r\n ariaLabel: settings?.ariaLabel,\r\n detailsOnClick: settings?.detailsOnClick,\r\n noOfTicks: settings?.noOfTicks,\r\n lineSuffix: settings?.lineSuffix,\r\n barSuffix: settings?.barSuffix,\r\n linePrefix: settings?.lineSuffix,\r\n barPrefix: settings?.barPrefix,\r\n barAxisTitle: settings?.barAxisTitle,\r\n lineAxisTitle: settings?.lineAxisTitle,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n animate: settings?.animate,\r\n };\r\n case 'dataTable':\r\n return {\r\n naLabel: settings?.naLabel,\r\n precision: settings?.precision,\r\n theme: settings?.theme,\r\n resetSelectionOnDoubleClick: settings?.resetSelectionOnDoubleClick,\r\n graphTitle: settings?.graphTitle,\r\n sources: settings?.sources,\r\n graphDescription: settings?.graphDescription,\r\n footNote: settings?.footNote,\r\n graphID: settings?.graphID,\r\n width: settings?.width,\r\n height: settings?.height,\r\n columnData: (settings?.columnData || []) as DataTableColumnDataType[],\r\n data: graphData,\r\n language: settings?.language,\r\n ariaLabel: settings?.ariaLabel,\r\n minWidth: settings?.minWidth,\r\n backgroundColor: settings?.backgroundColor,\r\n padding: settings?.padding,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n };\r\n case 'statCard':\r\n return {\r\n precision: settings?.precision,\r\n theme: settings?.theme,\r\n year: settings?.year,\r\n data: graphData,\r\n graphTitle: settings?.graphTitle || '',\r\n graphDescription: settings?.graphDescription,\r\n suffix: settings?.suffix,\r\n prefix: settings?.prefix,\r\n sources: settings?.sources || [],\r\n footNote: settings?.footNote,\r\n backgroundColor: settings?.backgroundColor,\r\n padding: settings?.padding,\r\n graphID: settings?.graphID,\r\n aggregationMethod: settings?.aggregationMethod,\r\n language: settings?.language,\r\n minHeight: settings?.minHeight,\r\n countOnly: settings?.countOnly,\r\n ariaLabel: settings?.ariaLabel,\r\n textBackground: settings?.textBackground,\r\n headingFontSize: settings?.headingFontSize,\r\n centerAlign: settings?.centerAlign,\r\n verticalAlign: settings?.verticalAlign,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n layout: settings?.layout,\r\n };\r\n case 'unitChart':\r\n return {\r\n precision: settings?.precision,\r\n theme: settings?.theme,\r\n totalNoOfDots: settings?.totalNoOfDots,\r\n gridSize: settings?.gridSize,\r\n unitPadding: settings?.unitPadding,\r\n size: settings?.size,\r\n graphTitle: settings?.graphTitle,\r\n sources: settings?.sources,\r\n colors: settings?.colors as string[] | undefined,\r\n graphDescription: settings?.graphDescription,\r\n footNote: settings?.footNote,\r\n backgroundColor: settings?.backgroundColor,\r\n padding: settings?.padding,\r\n graphID: settings?.graphID,\r\n graphDownload: settings?.graphDownload,\r\n dataDownload: settings?.dataDownload,\r\n language: settings?.language,\r\n showColorScale: settings?.showColorScale,\r\n showStrokeForWhiteDots: settings?.showStrokeForWhiteDots,\r\n note: settings?.note,\r\n data: graphData,\r\n width: settings?.width,\r\n height: settings?.height,\r\n minHeight: settings?.minHeight,\r\n relativeHeight: settings?.relativeHeight,\r\n ariaLabel: settings?.ariaLabel,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n animate: settings?.animate,\r\n };\r\n case 'sankeyChart':\r\n return {\r\n customLayers: settings?.customLayers,\r\n precision: settings?.precision,\r\n theme: settings?.theme,\r\n resetSelectionOnDoubleClick: settings?.resetSelectionOnDoubleClick,\r\n data: graphData,\r\n graphTitle: settings?.graphTitle,\r\n graphDescription: settings?.graphDescription,\r\n footNote: settings?.footNote,\r\n width: settings?.width,\r\n height: settings?.height,\r\n sources: settings?.sources,\r\n showLabels: settings?.showLabels,\r\n leftMargin: settings?.leftMargin,\r\n rightMargin: settings?.rightMargin,\r\n topMargin: settings?.topMargin,\r\n bottomMargin: settings?.bottomMargin,\r\n truncateBy: settings?.truncateBy,\r\n padding: settings?.padding,\r\n backgroundColor: settings?.backgroundColor,\r\n tooltip: settings?.tooltip,\r\n suffix: settings?.suffix,\r\n prefix: settings?.prefix,\r\n relativeHeight: settings?.relativeHeight,\r\n showValues: settings?.showValues,\r\n graphID: settings?.graphID,\r\n graphDownload: settings?.graphDownload,\r\n dataDownload: settings?.dataDownload,\r\n fillContainer: settings?.fillContainer,\r\n language: settings?.language,\r\n minHeight: settings?.minHeight,\r\n ariaLabel: settings?.ariaLabel,\r\n sourceColors: settings?.sourceColors,\r\n targetColors: settings?.targetColors,\r\n sourceColorDomain: settings?.sourceColorDomain,\r\n targetColorDomain: settings?.targetColorDomain,\r\n nodePadding: settings?.nodePadding,\r\n nodeWidth: settings?.nodeWidth,\r\n highlightedSourceDataPoints: settings?.highlightedSourceDataPoints,\r\n highlightedTargetDataPoints: settings?.highlightedTargetDataPoints,\r\n defaultLinkOpacity: settings?.defaultLinkOpacity,\r\n sourceTitle: settings?.sourceTitle,\r\n targetTitle: settings?.targetTitle,\r\n sortNodes: settings?.sortNodes,\r\n detailsOnClick: settings?.detailsOnClick,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n animate: settings?.animate,\r\n };\r\n case 'dataCards':\r\n return {\r\n theme: settings?.theme,\r\n graphTitle: settings?.graphTitle,\r\n sources: settings?.sources,\r\n graphDescription: settings?.graphDescription,\r\n footNote: settings?.footNote,\r\n graphID: settings?.graphID,\r\n width: settings?.width,\r\n height: settings?.height,\r\n columnData: (settings?.columnData || []) as DataTableColumnDataType[],\r\n data: graphData,\r\n language: settings?.language,\r\n ariaLabel: settings?.ariaLabel,\r\n cardTemplate: settings?.cardTemplate,\r\n cardBackgroundColor: settings?.cardBackgroundColor,\r\n cardFilters: settings?.cardFilters || [],\r\n cardSortingOptions: settings?.cardSortingOptions,\r\n cardSearchColumns: settings?.cardSearchColumns,\r\n cardMinWidth: settings?.cardMinWidth,\r\n backgroundColor: settings?.backgroundColor,\r\n padding: settings?.padding,\r\n detailsOnClick: settings?.detailsOnClick,\r\n allowDataDownloadOnDetail: settings?.allowDataDownloadOnDetail,\r\n noOfItemsInAPage: settings?.noOfItemsInAPage,\r\n uiMode: settings?.uiMode,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n };\r\n case 'radarChart':\r\n return {\r\n customLayers: settings?.customLayers,\r\n precision: settings?.precision,\r\n graphTitle: settings?.graphTitle,\r\n dimmedOpacity: settings?.dimmedOpacity,\r\n graphDescription: settings?.graphDescription,\r\n footNote: settings?.footNote,\r\n sources: settings?.sources,\r\n ariaLabel: settings?.ariaLabel,\r\n colors: settings?.colors,\r\n colorDomain: settings?.colorDomain,\r\n colorLegendTitle: settings?.colorLegendTitle,\r\n backgroundColor: settings?.backgroundColor,\r\n styles: settings?.styles,\r\n classNames: settings?.classNames,\r\n width: settings?.width,\r\n height: settings?.height,\r\n minHeight: settings?.minHeight,\r\n relativeHeight: settings?.relativeHeight,\r\n padding: settings?.padding,\r\n radius: settings?.radius,\r\n leftMargin: settings?.leftMargin,\r\n rightMargin: settings?.rightMargin,\r\n topMargin: settings?.topMargin,\r\n bottomMargin: settings?.bottomMargin,\r\n maxValue: settings?.maxValue,\r\n minValue: settings?.minValue,\r\n showValues: settings?.showValues,\r\n showDots: settings?.showDots,\r\n strokeWidth: settings?.strokeWidth,\r\n fillShape: settings?.fillShape,\r\n noOfTicks: settings?.noOfTicks,\r\n showColorScale: settings?.showColorScale,\r\n showNAColor: settings?.showNAColor,\r\n highlightedLines: settings?.highlightedLines,\r\n axisLabels: settings?.axisLabels,\r\n curveType: settings?.curveType,\r\n resetSelectionOnDoubleClick: settings?.resetSelectionOnDoubleClick,\r\n graphDownload: settings?.graphDownload,\r\n dataDownload: settings?.dataDownload,\r\n tooltip: settings?.tooltip,\r\n detailsOnClick: settings?.detailsOnClick,\r\n language: settings?.language,\r\n theme: settings?.theme,\r\n graphID: settings?.graphID,\r\n animate: settings?.animate,\r\n };\r\n default:\r\n return {};\r\n }\r\n };\r\n const GraphComponent = graphComponents[graph];\r\n const graphProps = getGraphProps(graph);\r\n return (\r\n <div\r\n className={`grow my-0 ${\r\n graph !== 'statCard' ? 'mx-auto' : 'mx-0'\r\n } flex flex-col h-inherit ${settings?.width ? 'w-fit' : 'w-full'} ${\r\n graph !== 'unitChart' && graph !== 'statCard' ? 'justify-center' : 'justify-start'\r\n } ${settings?.theme || 'light'}`}\r\n style={{ minHeight: 'inherit' }}\r\n >\r\n {GraphComponent ? (\r\n <GraphComponent {...graphProps} />\r\n ) : (\r\n <P\r\n size='sm'\r\n marginBottom='none'\r\n className='p-2 text-center text-accent-dark-red dark:text-accent-red'\r\n >\r\n {`Invalid chart type: ${graph}`}\r\n </P>\r\n )}\r\n </div>\r\n );\r\n}\r\n\r\nexport default GraphEl;\r\n"],"names":["GraphEl","props","settings","graph","graphData","debugMode","graphDataConfiguration","readableHeader","updateFilters","jsx","P","graphComponents","SimpleBarGraph","BulletChart","GroupedBarGraph","StackedBarGraph","SimpleLineChart","DualAxisLineChart","MultiLineChart","MultiLineAltChart","AreaChart","ChoroplethMap","BiVariateChoroplethMap","DotDensityMap","DonutChart","SlopeChart","ScatterPlot","DumbbellChart","TreeMapGraph","CirclePackingGraph","HeatMap","StripChart","BeeSwarmChart","ButterflyChart","Histogram","SparkLine","ParetoChart","DataTable","StatCardFromData","UnitChart","DifferenceLineChart","SankeyChart","LineChartWithConfidenceInterval","DataCards","RadarChart","getGraphProps","graphType","getValues","el","GraphComponent","graphProps"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA0DA,SAASA,GAAQC,GAAc;AAC7B,QAAM;AAAA,IACJ,UAAAC;AAAA,IACA,OAAAC;AAAA,IACA,WAAAC;AAAA,IACA,WAAAC;AAAA,IACA,wBAAAC;AAAA,IACA,gBAAAC;AAAA,IACA,eAAAC;AAAA,EAAA,IACEP;AASJ,MARII,MAEF,QAAQ,IAAI,UAAUF,CAAK,EAAE,GAE7B,QAAQ,IAAI,qBAAqBC,CAAS,GAE1C,QAAQ,IAAI,aAAaF,CAAQ,IAE/B,OAAOE,KAAc;AACvB,WACEK,gBAAAA,EAAAA;AAAAA,MAAC;AAAA,MAAA;AAAA,QACC,WAAW,kDACTP,GAAU,QAAQ,UAAU,QAC9B;AAAA,QACA,OAAO,EAAE,QAAQ,UAAA;AAAA,QAEjB,UAAAO,gBAAAA,EAAAA;AAAAA,UAACC;AAAAA,UAAA;AAAA,YACC,MAAK;AAAA,YACL,cAAa;AAAA,YACb,WAAU;AAAA,YAET,UAAAN;AAAA,UAAA;AAAA,QAAA;AAAA,MACH;AAAA,IAAA;AAGN,QAAMO,IAA+D;AAAA,IACnE,UAAUC;AAAA,IACV,aAAaC;AAAA,IACb,iBAAiBC;AAAA,IACjB,iBAAiBC;AAAA,IACjB,WAAWC;AAAA,IACX,mBAAmBC;AAAA,IACnB,gBAAgBC;AAAA,IAChB,mBAAmBC;AAAA,IACnB,kBAAkBC;AAAA,IAClB,eAAeC;AAAA,IACf,wBAAwBC;AAAA,IACxB,eAAeC;AAAA,IACf,YAAYC;AAAA,IACZ,YAAYC;AAAA,IACZ,aAAaC;AAAA,IACb,eAAeC;AAAA,IACf,SAASC;AAAA,IACT,eAAeC;AAAA,IACf,SAASC;AAAA,IACT,YAAYC;AAAA,IACZ,eAAeC;AAAA,IACf,gBAAgBC;AAAA,IAChB,WAAWC;AAAA,IACX,WAAWC;AAAA,IACX,aAAaC;AAAA,IACb,WAAWC;AAAA,IACX,UAAUC;AAAA,IACV,WAAWC;AAAA,IACX,qBAAqBC;AAAA,IACrB,aAAaC;AAAA,IACb,iCAAiCC;AAAA,IACjC,WAAWC;AAAA,IACX,YAAYC;AAAA,EAAA,GAERC,IAAgB,CAACC,MAAyB;AAC9C,YAAQA,GAAA;AAAA,MACN,KAAK;AACH,eAAO;AAAA,UACL,UAAU5C,GAAU;AAAA,UACpB,cAAcA,GAAU;AAAA,UACxB,WAAWA,GAAU;AAAA,UACrB,OAAOA,GAAU;AAAA,UACjB,eAAeA,GAAU;AAAA,UACzB,aAAaA,GAAU;AAAA,UACvB,MAAME;AAAA,UACN,QAAQF,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,kBAAkBA,GAAU;AAAA,UAC5B,UAAUA,GAAU;AAAA,UACpB,QAAQA,GAAU;AAAA,UAClB,OAAOA,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,QAAQA,GAAU;AAAA,UAClB,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,WAAWA,GAAU;AAAA,UACrB,YAAYA,GAAU;AAAA,UACtB,aAAaA,GAAU;AAAA,UACvB,YAAYA,GAAU;AAAA,UACtB,aAAaA,GAAU;AAAA,UACvB,kBACE,OAAO,KAAKA,KAAY,CAAA,CAAE,EAAE,QAAQ,kBAAkB,MAAM,KACxDA,GAAU,mBACV6C,EAAU,SAASzC,KAA0B,CAAA,GAAIC,KAAkB,EAAE;AAAA,UAC3E,iBAAiBL,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,UACnB,WAAWA,GAAU;AAAA,UACrB,cAAcA,GAAU;AAAA,UACxB,gBAAgBA,GAAU;AAAA,UAC1B,YAAYA,GAAU;AAAA,UACtB,gBAAgBA,GAAU;AAAA,UAC1B,UAAUA,GAAU;AAAA,UACpB,UAAUA,GAAU;AAAA,UACpB,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,UACnB,WAAWA,GAAU;AAAA,UACrB,SAASA,GAAU;AAAA,UACnB,uBAAuBA,GAAU;AAAA,UACjC,eAAeA,GAAU;AAAA,UACzB,cAAcA,GAAU;AAAA,UACxB,UAAUA,GAAU;AAAA,UACpB,UAAUA,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,aAAaA,GAAU;AAAA,UACvB,iBAAiBA,GAAU;AAAA,UAC3B,iBAAiBA,GAAU;AAAA,UAC3B,iBAAiBA,GAAU;AAAA,UAC3B,WAAWA,GAAU;AAAA;AAAA,UAErB,oBAAoB,CAAC8C,MAAY;AAC/B,YAAAxC,IAAgBwC,EAAG,KAAK;AAAA,UAC1B;AAAA,UACA,6BAA6B9C,GAAU;AAAA,UACvC,gBAAgBA,GAAU;AAAA,UAC1B,cAAcA,GAAU;AAAA,UACxB,WAAWA,GAAU;AAAA,UACrB,YAAYA,GAAU;AAAA,UACtB,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,UAAUA,GAAU;AAAA,UACpB,SAASA,GAAU;AAAA,UACnB,SAASA,GAAU;AAAA,QAAA;AAAA,MAEvB,KAAK;AACH,eAAO;AAAA,UACL,UAAUA,GAAU;AAAA,UACpB,cAAcA,GAAU;AAAA,UACxB,WAAWA,GAAU;AAAA,UACrB,OAAOA,GAAU;AAAA,UACjB,aAAaA,GAAU;AAAA,UACvB,eAAeA,GAAU;AAAA,UACzB,UAAUA,GAAU;AAAA,UACpB,MAAME;AAAA,UACN,QAAQF,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,kBAAkBA,GAAU;AAAA,UAC5B,UAAUA,GAAU;AAAA,UACpB,OAAOA,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,gBAAgBA,GAAU;AAAA,UAC1B,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,WAAWA,GAAU;AAAA,UACrB,YAAYA,GAAU;AAAA,UACtB,aACEA,GAAU,eACT6C,EAAU,QAAQzC,KAA0B,CAAA,GAAIC,KAAkB,EAAE;AAAA,UACvE,kBAAkBL,GAAU;AAAA,UAC5B,QAAQA,GAAU;AAAA,UAClB,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,iBAAiBA,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,aAAaA,GAAU;AAAA,UACvB,WAAWA,GAAU;AAAA,UACrB,YAAYA,GAAU;AAAA,UACtB,cAAcA,GAAU;AAAA,UACxB,gBAAgBA,GAAU;AAAA,UAC1B,SAASA,GAAU;AAAA,UACnB,WAAWA,GAAU;AAAA,UACrB,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,UAAUA,GAAU;AAAA,UACpB,UAAUA,GAAU;AAAA,UACpB,eAAeA,GAAU;AAAA,UACzB,cAAcA,GAAU;AAAA,UACxB,UAAUA,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,iBAAiBA,GAAU;AAAA,UAC3B,WAAWA,GAAU;AAAA,UACrB,6BAA6BA,GAAU;AAAA,UACvC,gBAAgBA,GAAU;AAAA,UAC1B,cAAcA,GAAU;AAAA,UACxB,WAAWA,GAAU;AAAA,UACrB,YAAYA,GAAU;AAAA,UACtB,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,UACnB,SAASA,GAAU;AAAA,QAAA;AAAA,MAEvB,KAAK;AACH,eAAO;AAAA,UACL,UAAUA,GAAU;AAAA,UACpB,cAAcA,GAAU;AAAA,UACxB,WAAWA,GAAU;AAAA,UACrB,OAAOA,GAAU;AAAA,UACjB,aAAaA,GAAU;AAAA,UACvB,6BAA6BA,GAAU;AAAA,UACvC,MAAME;AAAA,UACN,QAAQF,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,kBAAkBA,GAAU;AAAA,UAC5B,UAAUA,GAAU;AAAA,UACpB,gBAAgBA,GAAU;AAAA,UAC1B,OAAOA,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,WAAWA,GAAU;AAAA,UACrB,YAAYA,GAAU;AAAA,UACtB,aAAaA,GAAU;AAAA,UACvB,YAAYA,GAAU;AAAA,UACtB,aACEA,GAAU,eACT6C,EAAU,QAAQzC,KAA0B,CAAA,GAAIC,KAAkB,EAAE;AAAA,UACvE,kBAAkBL,GAAU;AAAA,UAC5B,iBAAiBA,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,UACnB,WAAWA,GAAU;AAAA,UACrB,cAAcA,GAAU;AAAA,UACxB,QAAQA,GAAU;AAAA,UAClB,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,gBAAgBA,GAAU;AAAA,UAC1B,SAASA,GAAU;AAAA,UACnB,WAAWA,GAAU;AAAA,UACrB,SAASA,GAAU;AAAA,UACnB,UAAUA,GAAU;AAAA,UACpB,eAAeA,GAAU;AAAA,UACzB,cAAcA,GAAU;AAAA,UACxB,UAAUA,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,iBAAiBA,GAAU;AAAA,UAC3B,iBAAiBA,GAAU;AAAA,UAC3B,iBAAiBA,GAAU;AAAA,UAC3B,eAAeA,GAAU;AAAA,UACzB,UAAUA,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,gBAAgBA,GAAU;AAAA,UAC1B,cAAcA,GAAU;AAAA,UACxB,WAAWA,GAAU;AAAA,UACrB,YAAYA,GAAU;AAAA,UACtB,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,UACnB,SAASA,GAAU;AAAA,QAAA;AAAA,MAEvB,KAAK;AACH,eAAO;AAAA,UACL,cAAcA,GAAU;AAAA,UACxB,WAAWA,GAAU;AAAA,UACrB,OAAOA,GAAU;AAAA,UACjB,eAAeA,GAAU;AAAA,UACzB,aAAaA,GAAU;AAAA,UACvB,MAAME;AAAA,UACN,UAAUF,GAAU;AAAA,UACpB,YAAYA,GAAU;AAAA,UACtB,kBAAkBA,GAAU;AAAA,UAC5B,UAAUA,GAAU;AAAA,UACpB,QAAQA,GAAU;AAAA,UAClB,OAAOA,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,QAAQA,GAAU;AAAA,UAClB,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,WAAWA,GAAU;AAAA,UACrB,YAAYA,GAAU;AAAA,UACtB,aAAaA,GAAU;AAAA,UACvB,YAAYA,GAAU;AAAA,UACtB,aAAaA,GAAU;AAAA,UACvB,kBACE,OAAO,KAAKA,KAAY,CAAA,CAAE,EAAE,QAAQ,kBAAkB,MAAM,KACxDA,GAAU,mBACV6C,EAAU,SAASzC,KAA0B,CAAA,GAAIC,KAAkB,EAAE;AAAA,UAC3E,iBAAiBL,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,UACnB,WAAWA,GAAU;AAAA,UACrB,cAAcA,GAAU;AAAA,UACxB,gBAAgBA,GAAU;AAAA,UAC1B,YAAYA,GAAU;AAAA,UACtB,gBAAgBA,GAAU;AAAA,UAC1B,UAAUA,GAAU;AAAA,UACpB,UAAUA,GAAU;AAAA,UACpB,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,UACnB,WAAWA,GAAU;AAAA,UACrB,SAASA,GAAU;AAAA,UACnB,uBAAuBA,GAAU;AAAA,UACjC,eAAeA,GAAU;AAAA,UACzB,cAAcA,GAAU;AAAA,UACxB,UAAUA,GAAU;AAAA,UACpB,UAAUA,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,aAAaA,GAAU;AAAA,UACvB,iBAAiBA,GAAU;AAAA,UAC3B,iBAAiBA,GAAU;AAAA,UAC3B,iBAAiBA,GAAU;AAAA,UAC3B,WAAWA,GAAU;AAAA;AAAA,UAErB,oBAAoB,CAAC8C,MAAY;AAC/B,YAAAxC,IAAgBwC,EAAG,KAAK;AAAA,UAC1B;AAAA,UACA,6BAA6B9C,GAAU;AAAA,UACvC,gBAAgBA,GAAU;AAAA,UAC1B,cAAcA,GAAU;AAAA,UACxB,WAAWA,GAAU;AAAA,UACrB,YAAYA,GAAU;AAAA,UACtB,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,UAAUA,GAAU;AAAA,UACpB,wBAAwBA,GAAU;AAAA,UAClC,aAAaA,GAAU;AAAA,UACvB,aAAaA,GAAU;AAAA,UACvB,uBAAuBA,GAAU;AAAA,UACjC,SAASA,GAAU;AAAA,UACnB,SAASA,GAAU;AAAA,QAAA;AAAA,MAEvB,KAAK;AACH,eAAO;AAAA,UACL,cAAcA,GAAU;AAAA,UACxB,WAAWA,GAAU;AAAA,UACrB,OAAOA,GAAU;AAAA,UACjB,WAAWA,GAAU;AAAA,UACrB,MAAME;AAAA,UACN,SAASF,GAAU;AAAA,UACnB,WAAWA,GAAU;AAAA,UACrB,YAAYA,GAAU;AAAA,UACtB,kBAAkBA,GAAU;AAAA,UAC5B,UAAUA,GAAU;AAAA,UACpB,OAAOA,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,QAAQA,GAAU;AAAA,UAClB,QAAQA,GAAU;AAAA,UAClB,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,iBAAiBA,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,aAAaA,GAAU;AAAA,UACvB,WAAWA,GAAU;AAAA,UACrB,cAAcA,GAAU;AAAA,UACxB,gBAAgBA,GAAU;AAAA,UAC1B,SAASA,GAAU;AAAA,UACnB,WAAWA,GAAU;AAAA,UACrB,uBAAuBA,GAAU;AAAA,UAGjC,UAAUA,GAAU;AAAA,UACpB,UAAUA,GAAU;AAAA,UACpB,eAAeA,GAAU;AAAA,UACzB,cAAcA,GAAU;AAAA,UACxB,UAAUA,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,SAASA,GAAU;AAAA,UACnB,aAAaA,GAAU;AAAA,UACvB,UAAUA,GAAU;AAAA,UACpB,6BAA6BA,GAAU;AAAA,UACvC,aAAaA,GAAU;AAAA,UACvB,gBAAgBA,GAAU;AAAA,UAC1B,WAAWA,GAAU;AAAA,UACrB,YAAYA,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,UACnB,SAASA,GAAU;AAAA,UACnB,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,QAAA;AAAA,MAE1B,KAAK;AACH,eAAO;AAAA,UACL,cAAcA,GAAU;AAAA,UACxB,WAAWA,GAAU;AAAA,UACrB,OAAOA,GAAU;AAAA,UACjB,MAAME;AAAA,UACN,WAAWF,GAAU;AAAA,UACrB,SAASA,GAAU;AAAA,UACnB,WAAWA,GAAU;AAAA,UACrB,YAAYA,GAAU;AAAA,UACtB,kBAAkBA,GAAU;AAAA,UAC5B,UAAUA,GAAU;AAAA,UACpB,OAAOA,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,QAAQA,GAAU;AAAA,UAClB,QAAQA,GAAU;AAAA,UAClB,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,iBAAiBA,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,aAAaA,GAAU;AAAA,UACvB,WAAWA,GAAU;AAAA,UACrB,cAAcA,GAAU;AAAA,UACxB,gBAAgBA,GAAU;AAAA,UAC1B,SAASA,GAAU;AAAA,UACnB,WAAWA,GAAU;AAAA,UACrB,uBAAuBA,GAAU;AAAA,UAGjC,UAAUA,GAAU;AAAA,UACpB,UAAUA,GAAU;AAAA,UACpB,eAAeA,GAAU;AAAA,UACzB,cAAcA,GAAU;AAAA,UACxB,UAAUA,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,SAASA,GAAU;AAAA,UACnB,aAAaA,GAAU;AAAA,UACvB,UAAUA,GAAU;AAAA,UACpB,6BAA6BA,GAAU;AAAA,UACvC,aAAaA,GAAU;AAAA,UACvB,gBAAgBA,GAAU;AAAA,UAC1B,WAAWA,GAAU;AAAA,UACrB,kBAAkBA,GAAU;AAAA,UAC5B,oBAAoBA,GAAU;AAAA,UAC9B,yBAAyBA,GAAU;AAAA,UACnC,oBAAoBA,GAAU;AAAA,UAC9B,mBAAmBA,GAAU;AAAA,UAC7B,qBAAqBA,GAAU;AAAA,UAC/B,YAAYA,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,UACnB,SAASA,GAAU;AAAA,UACnB,kBAAkBA,GAAU;AAAA,UAC5B,mBAAmBA,GAAU;AAAA,UAC7B,mBAAmBA,GAAU;AAAA,UAC7B,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,QAAA;AAAA,MAE1B,KAAK;AACH,eAAO;AAAA,UACL,eAAeA,GAAU;AAAA,UACzB,gBAAgBA,GAAU;AAAA,UAC1B,cAAcA,GAAU;AAAA,UACxB,WAAWA,GAAU;AAAA,UACrB,OAAOA,GAAU;AAAA,UACjB,MAAME;AAAA,UACN,WAAWF,GAAU;AAAA,UACrB,YAAYA,GAAU;AAAA,UACtB,kBAAkBA,GAAU;AAAA,UAC5B,QAAQA,GAAU,UAAU;AAAA,YAC1B6C,EAAU,MAAMzC,KAA0B,CAAA,GAAIC,KAAkB,CAAA,CAAE;AAAA,YAClEwC,EAAU,MAAMzC,KAA0B,CAAA,GAAIC,KAAkB,CAAA,CAAE;AAAA,UAAA;AAAA,UAEpE,UAAUL,GAAU;AAAA,UACpB,OAAOA,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,QAAQA,GAAU;AAAA,UAClB,QAAQA,GAAU;AAAA,UAClB,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,iBAAiBA,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,aAAaA,GAAU;AAAA,UACvB,WAAWA,GAAU;AAAA,UACrB,cAAcA,GAAU;AAAA,UACxB,YAAYA,GAAU;AAAA,UACtB,UAAUA,GAAU;AAAA,UACpB,gBAAgBA,GAAU;AAAA,UAC1B,SAASA,GAAU;AAAA,UACnB,uBAAuBA,GAAU;AAAA,UAGjC,SAASA,GAAU;AAAA,UACnB,eAAeA,GAAU;AAAA,UACzB,cAAcA,GAAU;AAAA,UACxB,UAAUA,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,SAASA,GAAU;AAAA,UACnB,aAAaA,GAAU;AAAA,UACvB,UAAUA,GAAU;AAAA,UACpB,kBAAkBA,GAAU;AAAA,UAC5B,WAAWA,GAAU;AAAA,UACrB,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,UACnB,SAASA,GAAU;AAAA,UACnB,cAAcA,GAAU;AAAA,UACxB,cAAcA,GAAU;AAAA,UACxB,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,QAAA;AAAA,MAE1B,KAAK;AACH,eAAO;AAAA,UACL,cAAcA,GAAU;AAAA,UACxB,WAAWA,GAAU;AAAA,UACrB,OAAOA,GAAU;AAAA,UACjB,eAAeA,GAAU;AAAA,UACzB,MAAME;AAAA,UACN,WAAWF,GAAU;AAAA,UACrB,YAAYA,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,kBAAkBA,GAAU;AAAA,UAC5B,UAAUA,GAAU;AAAA,UACpB,OAAOA,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,QAAQA,GAAU;AAAA,UAClB,QAAQA,GAAU;AAAA,UAClB,gBAAgBA,GAAU;AAAA,UAC1B,QACEA,GAAU,UACT6C,EAAU,KAAKzC,KAA0B,CAAA,GAAIC,KAAkB,EAAE;AAAA,UACpE,iBAAiBL,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,aAAaA,GAAU;AAAA,UACvB,WAAWA,GAAU;AAAA,UACrB,cAAcA,GAAU;AAAA,UACxB,YAAYA,GAAU;AAAA,UACtB,gBAAgBA,GAAU;AAAA,UAC1B,sBAAsBA,GAAU;AAAA,UAChC,SAASA,GAAU;AAAA,UACnB,WAAWA,GAAU;AAAA,UACrB,uBAAuBA,GAAU;AAAA,UAGjC,SAASA,GAAU;AAAA,UACnB,UAAUA,GAAU;AAAA,UACpB,UAAUA,GAAU;AAAA,UACpB,kBAAkBA,GAAU;AAAA,UAC5B,eAAeA,GAAU;AAAA,UACzB,cAAcA,GAAU;AAAA,UACxB,UAAUA,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,SAASA,GAAU;AAAA,UACnB,aAAaA,GAAU;AAAA,UACvB,UAAUA,GAAU;AAAA,UACpB,kBAAkBA,GAAU;AAAA,UAC5B,6BAA6BA,GAAU;AAAA,UACvC,aAAaA,GAAU;AAAA,UACvB,WAAWA,GAAU;AAAA,UACrB,YAAYA,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,UACnB,SAASA,GAAU;AAAA,UACnB,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,aAAaA,GAAU;AAAA,UACvB,cAAcA,GAAU;AAAA,UACxB,kBAAkBA,GAAU;AAAA,QAAA;AAAA,MAEhC,KAAK;AACH,eAAO;AAAA,UACL,SAASA,GAAU;AAAA,UACnB,cAAcA,GAAU;AAAA,UACxB,WAAWA,GAAU;AAAA,UACrB,OAAOA,GAAU;AAAA,UACjB,MAAME;AAAA,UACN,eAAeF,GAAU;AAAA,UACzB,WAAWA,GAAU;AAAA,UACrB,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,kBAAkBA,GAAU;AAAA,UAC5B,UAAUA,GAAU;AAAA,UACpB,OAAOA,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,QAAQA,GAAU;AAAA,UAClB,QAAQA,GAAU;AAAA,UAClB,iBAAiBA,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,aAAaA,GAAU;AAAA,UACvB,WAAWA,GAAU;AAAA,UACrB,cAAcA,GAAU;AAAA,UACxB,gBAAgBA,GAAU;AAAA,UAC1B,SAASA,GAAU;AAAA,UACnB,WAAWA,GAAU;AAAA,UACrB,YAAYA,GAAU;AAAA,UACtB,uBAAuBA,GAAU;AAAA,UAGjC,SAASA,GAAU;AAAA,UACnB,UAAUA,GAAU;AAAA,UACpB,UAAUA,GAAU;AAAA,UACpB,kBAAkBA,GAAU;AAAA,UAC5B,eAAeA,GAAU;AAAA,UACzB,cAAcA,GAAU;AAAA,UACxB,UAAUA,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,SAASA,GAAU;AAAA,UACnB,aAAaA,GAAU;AAAA,UACvB,UAAUA,GAAU;AAAA,UACpB,kBAAkBA,GAAU;AAAA,UAC5B,6BAA6BA,GAAU;AAAA,UACvC,aAAaA,GAAU;AAAA,UACvB,WAAWA,GAAU;AAAA,UACrB,YAAYA,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,UACnB,SAASA,GAAU;AAAA,UACnB,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,aAAaA,GAAU;AAAA,UACvB,aAAaA,GAAU;AAAA,QAAA;AAAA,MAE3B,KAAK;AACH,eAAO;AAAA,UACL,cAAcA,GAAU;AAAA,UACxB,WAAWA,GAAU;AAAA,UACrB,OAAOA,GAAU;AAAA,UACjB,MAAME;AAAA,UACN,WAAWF,GAAU;AAAA,UACrB,YAAYA,GAAU;AAAA,UACtB,gBAAgBA,GAAU;AAAA,UAC1B,YAAYA,GAAU;AAAA,UACtB,kBAAkBA,GAAU;AAAA,UAC5B,UAAUA,GAAU;AAAA,UACpB,OAAOA,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,QAAQA,GAAU;AAAA,UAClB,QAAQA,GAAU;AAAA,UAClB,QAAQA,GAAU,UAAU;AAAA,YAC1B6C,EAAU,MAAMzC,KAA0B,CAAA,GAAIC,KAAkB,CAAA,CAAE;AAAA,YAClEwC,EAAU,MAAMzC,KAA0B,CAAA,GAAIC,KAAkB,CAAA,CAAE;AAAA,UAAA;AAAA,UAEpE,iBAAiBL,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,aAAaA,GAAU;AAAA,UACvB,WAAWA,GAAU;AAAA,UACrB,cAAcA,GAAU;AAAA,UACxB,YAAYA,GAAU;AAAA,UACtB,gBAAgBA,GAAU;AAAA,UAC1B,sBAAsBA,GAAU;AAAA,UAChC,SAASA,GAAU;AAAA,UACnB,WAAWA,GAAU;AAAA,UACrB,uBAAuBA,GAAU;AAAA,UAGjC,SAASA,GAAU;AAAA,UACnB,UAAUA,GAAU;AAAA,UACpB,UAAUA,GAAU;AAAA,UACpB,eAAeA,GAAU;AAAA,UACzB,cAAcA,GAAU;AAAA,UACxB,UAAUA,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,SAASA,GAAU;AAAA,UACnB,aAAaA,GAAU;AAAA,UACvB,UAAUA,GAAU;AAAA,UACpB,kBAAkBA,GAAU;AAAA,UAC5B,6BAA6BA,GAAU;AAAA,UACvC,aAAaA,GAAU;AAAA,UACvB,WAAWA,GAAU;AAAA,UACrB,YAAYA,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,UACnB,SAASA,GAAU;AAAA,UACnB,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,QAAA;AAAA,MAE1B,KAAK;AACH,eAAO;AAAA,UACL,cAAcA,GAAU;AAAA,UACxB,WAAWA,GAAU;AAAA,UACrB,OAAOA,GAAU;AAAA,UACjB,MAAME;AAAA,UACN,WAAWF,GAAU;AAAA,UACrB,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,kBAAkBA,GAAU;AAAA,UAC5B,UAAUA,GAAU;AAAA,UACpB,OAAOA,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,aACEA,GAAU,eACT6C,EAAU,KAAKzC,KAA0B,CAAA,GAAIC,KAAkB,EAAE;AAAA,UACpE,iBAAiBL,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,UACnB,kBAAkBA,GAAU;AAAA,UAC5B,YAAYA,GAAU;AAAA,UACtB,aAAaA,GAAU;AAAA,UACvB,WAAWA,GAAU;AAAA,UACrB,gBAAgBA,GAAU;AAAA,UAC1B,cAAcA,GAAU;AAAA,UACxB,SAASA,GAAU;AAAA,UACnB,WAAWA,GAAU;AAAA,UACrB,uBAAuBA,GAAU;AAAA,UAGjC,SAASA,GAAU;AAAA,UACnB,UAAUA,GAAU;AAAA,UACpB,UAAUA,GAAU;AAAA,UACpB,eAAeA,GAAU;AAAA,UACzB,cAAcA,GAAU;AAAA,UACxB,gBAAgBA,GAAU;AAAA,UAC1B,UAAUA,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,6BAA6BA,GAAU;AAAA,UACvC,aAAaA,GAAU;AAAA,UACvB,WAAWA,GAAU;AAAA,UACrB,YAAYA,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,QAAQA,GAAU;AAAA,UAClB,QAAQA,GAAU;AAAA,UAClB,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,QAAA;AAAA,MAE1B,KAAK;AACH,eAAO;AAAA,UACL,UAAUA,GAAU;AAAA,UACpB,cAAcA,GAAU;AAAA,UACxB,OAAOA,GAAU;AAAA,UACjB,eAAeA,GAAU;AAAA,UACzB,6BAA6BA,GAAU;AAAA,UACvC,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,UACnB,eAAeA,GAAU;AAAA,UACzB,kBAAkBA,GAAU;AAAA,UAC5B,UAAUA,GAAU;AAAA,UACpB,OAAOA,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,SAASA,GAAU;AAAA,UACnB,aAAaA,GAAU;AAAA,UACvB,QAAQA,GAAU;AAAA,UAClB,kBACE,OAAO,KAAKA,KAAY,CAAA,CAAE,EAAE,QAAQ,kBAAkB,MAAM,KACxDA,GAAU,mBACV6C,EAAU,KAAKzC,KAA0B,CAAA,GAAIC,KAAkB,EAAE;AAAA,UACvE,WAAWL,GAAU;AAAA,UACrB,aAAaA,GAAU;AAAA,UACvB,MAAME;AAAA,UACN,OAAOF,GAAU;AAAA,UACjB,aAAaA,GAAU;AAAA,UACvB,iBAAiBA,GAAU;AAAA,UAC3B,gBAAgBA,GAAU;AAAA,UAC1B,gBAAgBA,GAAU;AAAA,UAC1B,gBAAgBA,GAAU;AAAA,UAC1B,gBAAgBA,GAAU;AAAA,UAC1B,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,UACnB,gBAAgBA,GAAU;AAAA,UAC1B,iBAAiBA,GAAU;AAAA,UAC3B,qBAAqBA,GAAU;AAAA,UAC/B,SAASA,GAAU;AAAA,UACnB,gBAAgBA,GAAU;AAAA,UAC1B,eAAeA,GAAU;AAAA,UACzB,cAAcA,GAAU;AAAA,UACxB,aAAaA,GAAU;AAAA,UACvB,gBAAgBA,GAAU;AAAA,UAC1B,UAAUA,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,WAAWA,GAAU;AAAA;AAAA,UAErB,oBAAoB,CAAC8C,MAAY;AAC/B,YAAAxC,IAAgBwC,EAAG,EAAE;AAAA,UACvB;AAAA,UACA,gBAAgB9C,GAAU;AAAA,UAC1B,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,iBAAiBA,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,QAAA;AAAA,MAEvB,KAAK;AACH,eAAO;AAAA,UACL,UAAUA,GAAU;AAAA,UACpB,cAAcA,GAAU;AAAA,UACxB,OAAOA,GAAU;AAAA,UACjB,eAAeA,GAAU;AAAA,UACzB,6BAA6BA,GAAU;AAAA,UACvC,MAAME;AAAA,UACN,SAASF,GAAU;AAAA,UACnB,eAAeA,GAAU;AAAA,UACzB,YAAYA,GAAU;AAAA,UACtB,kBAAkBA,GAAU;AAAA,UAC5B,UAAUA,GAAU;AAAA,UACpB,OAAOA,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,SAASA,GAAU;AAAA,UACnB,mBACE,OAAO,KAAKA,KAAY,CAAA,CAAE,EAAE,QAAQ,mBAAmB,MAAM,KACzDA,GAAU,oBACV6C,EAAU,KAAKzC,KAA0B,CAAA,GAAIC,KAAkB,EAAE;AAAA,UACvE,mBACE,OAAO,KAAKL,KAAY,CAAA,CAAE,EAAE,QAAQ,mBAAmB,MAAM,KACzDA,GAAU,oBACV6C,EAAU,KAAKzC,KAA0B,CAAA,GAAIC,KAAkB,EAAE;AAAA,UACvE,SAASL,GAAU;AAAA,UACnB,SAASA,GAAU;AAAA,UACnB,QAAQA,GAAU;AAAA,UAClB,OAAOA,GAAU;AAAA,UACjB,aAAaA,GAAU;AAAA,UACvB,iBAAiBA,GAAU;AAAA,UAC3B,gBAAgBA,GAAU;AAAA,UAC1B,gBAAgBA,GAAU;AAAA,UAC1B,SAASA,GAAU;AAAA,UACnB,gBAAgBA,GAAU;AAAA,UAC1B,gBAAgBA,GAAU;AAAA,UAC1B,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,iBAAiBA,GAAU;AAAA,UAC3B,qBAAqBA,GAAU;AAAA,UAC/B,SAASA,GAAU;AAAA,UACnB,gBAAgBA,GAAU;AAAA,UAC1B,aAAaA,GAAU;AAAA,UACvB,eAAeA,GAAU;AAAA,UACzB,cAAcA,GAAU;AAAA,UACxB,gBAAgBA,GAAU;AAAA,UAC1B,UAAUA,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,WAAWA,GAAU;AAAA;AAAA,UAErB,oBAAoB,CAAC8C,MAAY;AAC/B,YAAAxC,IAAgBwC,EAAG,EAAE;AAAA,UACvB;AAAA,UACA,gBAAgB9C,GAAU;AAAA,UAC1B,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,iBAAiBA,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,QAAA;AAAA,MAEvB,KAAK;AACH,eAAO;AAAA,UACL,UAAUA,GAAU;AAAA,UACpB,cAAcA,GAAU;AAAA,UACxB,OAAOA,GAAU;AAAA,UACjB,eAAeA,GAAU;AAAA,UACzB,6BAA6BA,GAAU;AAAA,UACvC,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,UACnB,eAAeA,GAAU;AAAA,UACzB,kBAAkBA,GAAU;AAAA,UAC5B,UAAUA,GAAU;AAAA,UACpB,gBAAgBA,GAAU;AAAA,UAC1B,OAAOA,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,QAAQA,GAAU;AAAA,UAClB,SAASA,GAAU;AAAA,UACnB,QAAQA,GAAU;AAAA,UAClB,aAAaA,GAAU;AAAA,UACvB,kBACE,OAAO,KAAKA,KAAY,CAAA,CAAE,EAAE,QAAQ,kBAAkB,MAAM,KACxDA,GAAU,mBACV6C,EAAU,SAASzC,KAA0B,CAAA,GAAIC,KAAkB,EAAE;AAAA,UAC3E,MAAMH;AAAA,UACN,OAAOF,GAAU;AAAA,UACjB,aAAaA,GAAU;AAAA,UACvB,iBAAiBA,GAAU;AAAA,UAC3B,gBAAgBA,GAAU;AAAA,UAC1B,gBAAgBA,GAAU;AAAA,UAC1B,gBAAgBA,GAAU;AAAA,UAC1B,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,gBAAgBA,GAAU;AAAA,UAC1B,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,UACnB,gBAAgBA,GAAU;AAAA,UAC1B,iBAAiBA,GAAU;AAAA,UAC3B,qBAAqBA,GAAU;AAAA,UAC/B,SAASA,GAAU;AAAA,UACnB,uBAAuBA,GAAU;AAAA,UACjC,eAAeA,GAAU;AAAA,UACzB,cAAcA,GAAU;AAAA,UACxB,gBAAgBA,GAAU;AAAA,UAC1B,UAAUA,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,WAAWA,GAAU;AAAA,UACrB,gBAAgBA,GAAU;AAAA,UAC1B,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,iBAAiBA,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,QAAA;AAAA,MAEvB,KAAK;AACH,eAAO;AAAA,UACL,WAAWA,GAAU;AAAA,UACrB,OAAOA,GAAU;AAAA,UACjB,6BAA6BA,GAAU;AAAA,UACvC,UAAUA,GAAU;AAAA,UACpB,MAAME;AAAA,UACN,QAAQF,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,QAAQA,GAAU;AAAA,UAClB,QAAQA,GAAU;AAAA,UAClB,SAASA,GAAU;AAAA,UACnB,kBAAkBA,GAAU;AAAA,UAC5B,SAASA,GAAU;AAAA,UACnB,UAAUA,GAAU;AAAA,UACpB,QAAQA,GAAU;AAAA,UAClB,aAAaA,GAAU;AAAA,UACvB,gBAAgBA,GAAU;AAAA,UAC1B,iBAAiBA,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,UACnB,SAASA,GAAU;AAAA,UACnB,SAASA,GAAU;AAAA,UACnB,eAAeA,GAAU;AAAA,UACzB,cAAcA,GAAU;AAAA,UACxB,aAAaA,GAAU;AAAA,UACvB,UAAUA,GAAU;AAAA,UACpB,UAAUA,GAAU;AAAA,UACpB,OAAOA,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,WAAWA,GAAU;AAAA,UACrB,gBAAgBA,GAAU;AAAA,UAC1B,WAAWA,GAAU;AAAA,UACrB,cAAcA,GAAU;AAAA,UACxB,WAAWA,GAAU;AAAA,UACrB,gBAAgBA,GAAU;AAAA;AAAA,UAE1B,oBAAoB,CAAC8C,MAAY;AAC/B,YAAAxC,IAAgBwC,EAAG,KAAK;AAAA,UAC1B;AAAA,UACA,gBAAgB9C,GAAU;AAAA,UAC1B,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,oBAAoBA,GAAU;AAAA,QAAA;AAAA,MAElC,KAAK;AACH,eAAO;AAAA,UACL,cAAcA,GAAU;AAAA,UACxB,OAAOA,GAAU;AAAA,UACjB,eAAeA,GAAU;AAAA,UACzB,6BAA6BA,GAAU;AAAA,UACvC,MAAME;AAAA,UACN,YAAYF,GAAU;AAAA,UACtB,kBAAkBA,GAAU;AAAA,UAC5B,UAAUA,GAAU;AAAA,UACpB,OAAOA,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,QAAQA,GAAU;AAAA,UAClB,aAAaA,GAAU;AAAA,UACvB,kBACE,OAAO,KAAKA,KAAY,CAAA,CAAE,EAAE,QAAQ,kBAAkB,MAAM,KACxDA,GAAU,mBACV6C,EAAU,SAASzC,KAA0B,CAAA,GAAIC,KAAkB,EAAE;AAAA,UAC3E,QAAQL,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,iBAAiBA,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,aAAaA,GAAU;AAAA,UACvB,WAAWA,GAAU;AAAA,UACrB,cAAcA,GAAU;AAAA,UACxB,gBAAgBA,GAAU;AAAA,UAC1B,SAASA,GAAU;AAAA,UACnB,uBAAuBA,GAAU;AAAA,UACjC,gBAAgBA,GAAU;AAAA,UAC1B,SAASA,GAAU;AAAA,UACnB,UAAUA,GAAU;AAAA,UACpB,UAAUA,GAAU;AAAA,UACpB,eAAeA,GAAU;AAAA,UACzB,cAAcA,GAAU;AAAA,UACxB,eAAeA,GAAU;AAAA,UACzB,UAAUA,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,WAAWA,GAAU;AAAA,UACrB,gBAAgBA,GAAU;AAAA,UAC1B,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,QAAA;AAAA,MAEvB,KAAK;AACH,eAAO;AAAA,UACL,UAAUA,GAAU;AAAA,UACpB,cAAcA,GAAU;AAAA,UACxB,WAAWA,GAAU;AAAA,UACrB,OAAOA,GAAU;AAAA,UACjB,eAAeA,GAAU;AAAA,UACzB,6BAA6BA,GAAU;AAAA,UACvC,MAAME;AAAA,UACN,YAAYF,GAAU;AAAA,UACtB,kBAAkBA,GAAU;AAAA,UAC5B,UAAUA,GAAU;AAAA,UACpB,OAAOA,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,QAAQA,GAAU;AAAA,UAClB,aAAaA,GAAU;AAAA,UACvB,kBACE,OAAO,KAAKA,KAAY,CAAA,CAAE,EAAE,QAAQ,kBAAkB,MAAM,KACxDA,GAAU,mBACV6C,EAAU,SAASzC,KAA0B,CAAA,GAAIC,KAAkB,EAAE;AAAA,UAC3E,QAAQL,GAAU;AAAA,UAClB,YACE,OAAO,KAAKA,KAAY,CAAA,CAAE,EAAE,QAAQ,YAAY,MAAM,KAClDA,GAAU,aACV6C,EAAU,KAAKzC,KAA0B,CAAA,GAAIC,KAAkB,EAAE;AAAA,UACvE,YACE,OAAO,KAAKL,KAAY,CAAA,CAAE,EAAE,QAAQ,YAAY,MAAM,KAClDA,GAAU,aACV6C,EAAU,KAAKzC,KAA0B,CAAA,GAAIC,KAAkB,EAAE;AAAA,UACvE,iBAAiBL,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,aAAaA,GAAU;AAAA,UACvB,WAAWA,GAAU;AAAA,UACrB,cAAcA,GAAU;AAAA,UACxB,gBAAgBA,GAAU;AAAA,UAC1B,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,uBAAuBA,GAAU;AAAA,UACjC,uBAAuBA,GAAU;AAAA,UAGjC,gBAAgBA,GAAU;AAAA,UAC1B,SAASA,GAAU;AAAA,UACnB,gBAAgBA,GAAU;AAAA,UAC1B,WAAWA,GAAU;AAAA,UACrB,WAAWA,GAAU;AAAA,UACrB,WAAWA,GAAU;AAAA,UACrB,WAAWA,GAAU;AAAA,UACrB,eAAeA,GAAU;AAAA,UACzB,cAAcA,GAAU;AAAA,UACxB,UAAUA,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,aAAaA,GAAU;AAAA,UACvB,6BAA6BA,GAAU;AAAA,UACvC,aAAaA,GAAU;AAAA,UACvB,gBAAgBA,GAAU;AAAA,UAC1B,WAAWA,GAAU;AAAA,UACrB,gBAAgBA,GAAU;AAAA,UAC1B,YAAYA,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,UACnB,SAASA,GAAU;AAAA,UACnB,SAASA,GAAU;AAAA,UACnB,SAASA,GAAU;AAAA,UACnB,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,QAAA;AAAA,MAEvB,KAAK;AACH,eAAO;AAAA,UACL,UAAUA,GAAU;AAAA,UACpB,cAAcA,GAAU;AAAA,UACxB,WAAWA,GAAU;AAAA,UACrB,OAAOA,GAAU;AAAA,UACjB,aAAaA,GAAU;AAAA,UACvB,WAAWA,GAAU;AAAA,UACrB,6BAA6BA,GAAU;AAAA,UACvC,MAAME;AAAA,UACN,QAAQF,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,kBAAkBA,GAAU;AAAA,UAC5B,UAAUA,GAAU;AAAA,UACpB,OAAOA,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,WAAWA,GAAU;AAAA,UACrB,YAAYA,GAAU;AAAA,UACtB,aAAaA,GAAU;AAAA,UACvB,WAAWA,GAAU;AAAA,UACrB,cAAcA,GAAU;AAAA,UACxB,YAAYA,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,gBAAgBA,GAAU;AAAA,UAC1B,aACEA,GAAU,eACT6C,EAAU,KAAKzC,KAA0B,CAAA,GAAIC,KAAkB,EAAE;AAAA,UACpE,kBAAkBL,GAAU;AAAA,UAC5B,iBAAiBA,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,UACnB,QAAQA,GAAU;AAAA,UAClB,gBAAgBA,GAAU;AAAA,UAC1B,YAAYA,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,UACnB,SAASA,GAAU;AAAA,UACnB,UAAUA,GAAU;AAAA,UACpB,UAAUA,GAAU;AAAA,UACpB,eAAeA,GAAU;AAAA,UACzB,cAAcA,GAAU;AAAA,UACxB,QAAQA,GAAU;AAAA,UAClB,QAAQA,GAAU;AAAA,UAClB,UAAUA,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,eAAeA,GAAU;AAAA,UACzB,UAAUA,GAAU;AAAA,UACpB,gBAAgBA,GAAU;AAAA,UAC1B,sBAAsBA,GAAU;AAAA,UAChC,iBAAiBA,GAAU;AAAA,UAC3B,iBAAiBA,GAAU;AAAA,UAC3B,iBAAiBA,GAAU;AAAA,UAC3B,WAAWA,GAAU;AAAA,UACrB,gBAAgBA,GAAU;AAAA,UAC1B,WAAWA,GAAU;AAAA,UACrB,WAAWA,GAAU;AAAA,UACrB,YAAYA,GAAU;AAAA,UACtB,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,UACnB,uBAAuBA,GAAU;AAAA,UACjC,eAAeA,GAAU;AAAA,QAAA;AAAA,MAE7B,KAAK;AACH,eAAO;AAAA,UACL,WAAWA,GAAU;AAAA,UACrB,OAAOA,GAAU;AAAA,UACjB,eAAeA,GAAU;AAAA,UACzB,6BAA6BA,GAAU;AAAA,UACvC,MAAME;AAAA,UACN,QAAQF,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,kBAAkBA,GAAU;AAAA,UAC5B,UAAUA,GAAU;AAAA,UACpB,OAAOA,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,QAAQA,GAAU;AAAA,UAClB,QAAQA,GAAU;AAAA,UAClB,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,aAAaA,GAAU;AAAA,UACvB,aAAaA,GAAU;AAAA,UACvB,kBACE,OAAO,KAAKA,KAAY,CAAA,CAAE,EAAE,QAAQ,kBAAkB,MAAM,KACxDA,GAAU,mBACV6C,EAAU,SAASzC,KAA0B,CAAA,GAAIC,KAAkB,EAAE;AAAA,UAC3E,iBAAiBL,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,UACnB,WAAWA,GAAU;AAAA,UACrB,cAAcA,GAAU;AAAA,UACxB,gBAAgBA,GAAU;AAAA,UAC1B,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,UACnB,gBAAgBA,GAAU;AAAA,UAC1B,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,UACnB,uBAAuBA,GAAU;AAAA,UACjC,eAAeA,GAAU;AAAA,UACzB,cAAcA,GAAU;AAAA,UACxB,UAAUA,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,aAAaA,GAAU;AAAA,UACvB,WAAWA,GAAU;AAAA;AAAA,UAErB,oBAAoB,CAAC8C,MAAY;AAC/B,YAAAxC,IAAgBwC,EAAG,KAAK;AAAA,UAC1B;AAAA,UACA,gBAAgB9C,GAAU;AAAA,UAC1B,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,QAAA;AAAA,MAEvB,KAAK;AACH,eAAO;AAAA,UACL,WAAWA,GAAU;AAAA,UACrB,OAAOA,GAAU;AAAA,UACjB,eAAeA,GAAU;AAAA,UACzB,6BAA6BA,GAAU;AAAA,UACvC,MAAME;AAAA,UACN,QAAQF,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,kBAAkBA,GAAU;AAAA,UAC5B,UAAUA,GAAU;AAAA,UACpB,OAAOA,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,QAAQA,GAAU;AAAA,UAClB,QAAQA,GAAU;AAAA,UAClB,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,aAAaA,GAAU;AAAA,UACvB,aAAaA,GAAU;AAAA,UACvB,kBACE,OAAO,KAAKA,KAAY,CAAA,CAAE,EAAE,QAAQ,kBAAkB,MAAM,KACxDA,GAAU,mBACV6C,EAAU,SAASzC,KAA0B,CAAA,GAAIC,KAAkB,EAAE;AAAA,UAC3E,iBAAiBL,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,UACnB,WAAWA,GAAU;AAAA,UACrB,cAAcA,GAAU;AAAA,UACxB,gBAAgBA,GAAU;AAAA,UAC1B,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,UACnB,gBAAgBA,GAAU;AAAA,UAC1B,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,UACnB,uBAAuBA,GAAU;AAAA,UACjC,eAAeA,GAAU;AAAA,UACzB,cAAcA,GAAU;AAAA,UACxB,UAAUA,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,aAAaA,GAAU;AAAA,UACvB,WAAWA,GAAU;AAAA,UACrB,QAAQA,GAAU;AAAA,UAClB,gBAAgBA,GAAU;AAAA;AAAA,UAE1B,oBAAoB,CAAC8C,MAAY;AAC/B,YAAAxC,IAAgBwC,EAAG,KAAK;AAAA,UAC1B;AAAA,UACA,gBAAgB9C,GAAU;AAAA,UAC1B,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,QAAA;AAAA,MAEvB,KAAK;AACH,eAAO;AAAA,UACL,WAAWA,GAAU;AAAA,UACrB,OAAOA,GAAU;AAAA,UACjB,6BAA6BA,GAAU;AAAA,UACvC,MAAME;AAAA,UACN,QAAQF,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,kBAAkBA,GAAU;AAAA,UAC5B,UAAUA,GAAU;AAAA,UACpB,OAAOA,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,SAASA,GAAU;AAAA,UACnB,WAAWA,GAAU;AAAA,UACrB,aAAaA,GAAU;AAAA,UACvB,kBAAkBA,GAAU;AAAA,UAC5B,YAAYA,GAAU;AAAA,UACtB,aAAaA,GAAU;AAAA,UACvB,YAAYA,GAAU;AAAA,UACtB,kBACE,OAAO,KAAKA,KAAY,CAAA,CAAE,EAAE,QAAQ,kBAAkB,MAAM,KACxDA,GAAU,mBACV6C,EAAU,SAASzC,KAA0B,CAAA,GAAIC,KAAkB,EAAE;AAAA,UAC3E,iBAAiBL,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,UACnB,WAAWA,GAAU;AAAA,UACrB,cAAcA,GAAU;AAAA,UACxB,QAAQA,GAAU;AAAA,UAClB,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,eAAeA,GAAU;AAAA,UACzB,gBAAgBA,GAAU;AAAA,UAC1B,SAASA,GAAU;AAAA,UACnB,SAASA,GAAU;AAAA,UACnB,aAAaA,GAAU;AAAA,UACvB,gBAAgBA,GAAU;AAAA,UAC1B,eAAeA,GAAU;AAAA,UACzB,cAAcA,GAAU;AAAA,UACxB,eAAeA,GAAU;AAAA,UACzB,UAAUA,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,aAAaA,GAAU;AAAA,UACvB,WAAWA,GAAU;AAAA,UACrB,gBAAgBA,GAAU;AAAA,UAC1B,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,QAAA;AAAA,MAEvB,KAAK;AACH,eAAO;AAAA,UACL,cAAcA,GAAU;AAAA,UACxB,WAAWA,GAAU;AAAA,UACrB,OAAOA,GAAU;AAAA,UACjB,eAAeA,GAAU;AAAA,UACzB,aAAaA,GAAU;AAAA,UACvB,6BAA6BA,GAAU;AAAA,UACvC,MAAME;AAAA,UACN,YAAYF,GAAU;AAAA,UACtB,kBAAkBA,GAAU;AAAA,UAC5B,UAAUA,GAAU;AAAA,UACpB,OAAOA,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,SAASA,GAAU;AAAA,UACnB,QAAQA,GAAU;AAAA,UAClB,aAAaA,GAAU;AAAA,UACvB,kBACE,OAAO,KAAKA,KAAY,CAAA,CAAE,EAAE,QAAQ,kBAAkB,MAAM,KACxDA,GAAU,mBACV6C,EAAU,SAASzC,KAA0B,CAAA,GAAIC,KAAkB,EAAE;AAAA,UAC3E,QAAQL,GAAU;AAAA,UAClB,iBAAiBA,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,aAAaA,GAAU;AAAA,UACvB,WAAWA,GAAU;AAAA,UACrB,cAAcA,GAAU;AAAA,UACxB,gBAAgBA,GAAU;AAAA,UAC1B,SAASA,GAAU;AAAA,UACnB,uBAAuBA,GAAU;AAAA,UACjC,gBAAgBA,GAAU;AAAA,UAC1B,SAASA,GAAU;AAAA,UACnB,UAAUA,GAAU;AAAA,UACpB,UAAUA,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,eAAeA,GAAU;AAAA,UACzB,cAAcA,GAAU;AAAA,UACxB,QAAQA,GAAU;AAAA,UAClB,QAAQA,GAAU;AAAA,UAClB,WAAWA,GAAU;AAAA,UACrB,YAAYA,GAAU;AAAA,UACtB,UAAUA,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,gBAAgBA,GAAU;AAAA,UAC1B,YAAYA,GAAU;AAAA,UACtB,aAAaA,GAAU;AAAA,UACvB,WAAWA,GAAU;AAAA,UACrB,gBAAgBA,GAAU;AAAA,UAC1B,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,QAAA;AAAA,MAEvB,KAAK;AACH,eAAO;AAAA,UACL,cAAcA,GAAU;AAAA,UACxB,WAAWA,GAAU;AAAA,UACrB,OAAOA,GAAU;AAAA,UACjB,eAAeA,GAAU;AAAA,UACzB,6BAA6BA,GAAU;AAAA,UACvC,MAAME;AAAA,UACN,QAAQF,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,kBAAkBA,GAAU;AAAA,UAC5B,UAAUA,GAAU;AAAA,UACpB,OAAOA,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,SAASA,GAAU;AAAA,UACnB,WAAWA,GAAU;AAAA,UACrB,YAAYA,GAAU;AAAA,UACtB,aAAaA,GAAU;AAAA,UACvB,aAAaA,GAAU;AAAA,UACvB,kBACE,OAAO,KAAKA,KAAY,CAAA,CAAE,EAAE,QAAQ,kBAAkB,MAAM,KACxDA,GAAU,mBACV6C,EAAU,SAASzC,KAA0B,CAAA,GAAIC,KAAkB,EAAE;AAAA,UAC3E,iBAAiBL,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,UACnB,WAAWA,GAAU;AAAA,UACrB,cAAcA,GAAU;AAAA,UACxB,gBAAgBA,GAAU;AAAA,UAC1B,YAAYA,GAAU;AAAA,UACtB,gBAAgBA,GAAU;AAAA,UAC1B,SAASA,GAAU;AAAA,UACnB,WAAWA,GAAU;AAAA,UACrB,SAASA,GAAU;AAAA,UACnB,QAAQA,GAAU;AAAA,UAClB,gBAAgBA,GAAU;AAAA,UAC1B,UAAUA,GAAU;AAAA,UACpB,UAAUA,GAAU;AAAA,UACpB,uBAAuBA,GAAU;AAAA,UACjC,eAAeA,GAAU;AAAA,UACzB,cAAcA,GAAU;AAAA,UACxB,UAAUA,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,aAAaA,GAAU;AAAA,UACvB,WAAWA,GAAU;AAAA,UACrB,gBAAgBA,GAAU;AAAA,UAC1B,aAAaA,GAAU;AAAA,UACvB,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,QAAA;AAAA,MAEvB,KAAK;AACH,eAAO;AAAA,UACL,SAASA,GAAU;AAAA,UACnB,UAAUA,GAAU;AAAA,UACpB,cAAcA,GAAU;AAAA,UACxB,WAAWA,GAAU;AAAA,UACrB,OAAOA,GAAU;AAAA,UACjB,6BAA6BA,GAAU;AAAA,UACvC,MAAME;AAAA,UACN,YAAYF,GAAU;AAAA,UACtB,kBAAkBA,GAAU;AAAA,UAC5B,cACE,OAAO,KAAKA,KAAY,CAAA,CAAE,EAAE,QAAQ,cAAc,MAAM,KACpDA,GAAU,eACV6C,EAAU,WAAWzC,KAA0B,CAAA,GAAIC,KAAkB,EAAE;AAAA,UAC7E,eACE,OAAO,KAAKL,KAAY,CAAA,CAAE,EAAE,QAAQ,eAAe,MAAM,KACrDA,GAAU,gBACV6C,EAAU,YAAYzC,KAA0B,CAAA,GAAIC,KAAkB,EAAE;AAAA,UAC9E,UAAUL,GAAU;AAAA,UACpB,OAAOA,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,SAASA,GAAU;AAAA,UACnB,iBAAiBA,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,aAAaA,GAAU;AAAA,UACvB,WAAWA,GAAU;AAAA,UACrB,cAAcA,GAAU;AAAA,UACxB,WAAWA,GAAU;AAAA,UACrB,gBAAgBA,GAAU;AAAA,UAC1B,SAASA,GAAU;AAAA,UACnB,SAASA,GAAU;AAAA,UACnB,eAAeA,GAAU;AAAA,UACzB,cAAcA,GAAU;AAAA,UACxB,YAAYA,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,QAAQA,GAAU;AAAA,UAClB,QAAQA,GAAU;AAAA,UAClB,WAAWA,GAAU;AAAA,UACrB,YAAYA,GAAU;AAAA,UACtB,WAAWA,GAAU;AAAA,UACrB,UAAUA,GAAU;AAAA,UACpB,UAAUA,GAAU;AAAA,UACpB,gBAAgBA,GAAU;AAAA,UAC1B,WAAWA,GAAU;AAAA,UACrB,UAAUA,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,WAAWA,GAAU;AAAA,UACrB,gBAAgBA,GAAU;AAAA,UAC1B,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,QAAA;AAAA,MAEvB,KAAK;AACH,eAAO;AAAA,UACL,WAAWA,GAAU;AAAA,UACrB,OAAOA,GAAU;AAAA,UACjB,MAAME;AAAA,UACN,QAAQF,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,kBAAkBA,GAAU;AAAA,UAC5B,UAAUA,GAAU;AAAA,UACpB,OAAOA,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,WAAWA,GAAU;AAAA,UACrB,YAAYA,GAAU;AAAA,UACtB,aAAaA,GAAU;AAAA,UACvB,iBAAiBA,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,UACnB,WAAWA,GAAU;AAAA,UACrB,cAAcA,GAAU;AAAA,UACxB,gBAAgBA,GAAU;AAAA,UAC1B,YAAYA,GAAU;AAAA,UACtB,UAAUA,GAAU;AAAA,UACpB,SAASA,GAAU;AAAA,UACnB,WAAWA,GAAU;AAAA,UACrB,SAASA,GAAU;AAAA,UACnB,eAAeA,GAAU;AAAA,UACzB,cAAcA,GAAU;AAAA,UACxB,cAAcA,GAAU;AAAA,UACxB,YAAYA,GAAU;AAAA,UACtB,kBAAkBA,GAAU;AAAA,UAC5B,UAAUA,GAAU;AAAA,UACpB,gBAAgBA,GAAU;AAAA,UAC1B,WAAWA,GAAU;AAAA,UACrB,UAAUA,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,iBAAiBA,GAAU;AAAA,UAC3B,WAAWA,GAAU;AAAA,UACrB,gBAAgBA,GAAU;AAAA,UAC1B,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,QAAA;AAAA,MAE1B,KAAK;AACH,eAAO;AAAA,UACL,cAAcA,GAAU;AAAA,UACxB,OAAOA,GAAU;AAAA,UACjB,MAAME;AAAA,UACN,WAAWF,GAAU;AAAA,UACrB,WAAWA,GAAU;AAAA,UACrB,YAAYA,GAAU;AAAA,UACtB,kBAAkBA,GAAU;AAAA,UAC5B,UAAUA,GAAU;AAAA,UACpB,OAAOA,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,MAAMA,GAAU;AAAA,UAChB,iBAAiBA,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,aAAaA,GAAU;AAAA,UACvB,WAAWA,GAAU;AAAA,UACrB,cAAcA,GAAU;AAAA,UACxB,gBAAgBA,GAAU;AAAA,UAC1B,SAASA,GAAU;AAAA,UACnB,SAASA,GAAU;AAAA,UACnB,UAAUA,GAAU;AAAA,UACpB,UAAUA,GAAU;AAAA,UACpB,eAAeA,GAAU;AAAA,UACzB,cAAcA,GAAU;AAAA,UACxB,UAAUA,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,WAAWA,GAAU;AAAA,UACrB,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,QAAA;AAAA,MAE1B,KAAK;AACH,eAAO;AAAA,UACL,eAAeA,GAAU;AAAA,UACzB,gBAAgBA,GAAU;AAAA,UAC1B,SAASA,GAAU;AAAA,UACnB,cAAcA,GAAU;AAAA,UACxB,WAAWA,GAAU;AAAA,UACrB,OAAOA,GAAU;AAAA,UACjB,6BAA6BA,GAAU;AAAA,UACvC,MAAME;AAAA,UACN,YAAYF,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,kBAAkBA,GAAU;AAAA,UAC5B,UACE,OAAO,KAAKA,KAAY,CAAA,CAAE,EAAE,QAAQ,UAAU,MAAM,KAChDA,GAAU,WACV6C,EAAU,YAAYzC,KAA0B,CAAA,GAAIC,KAAkB,EAAE;AAAA,UAC9E,WACE,OAAO,KAAKL,KAAY,CAAA,CAAE,EAAE,QAAQ,WAAW,MAAM,KACjDA,GAAU,YACV6C,EAAU,aAAazC,KAA0B,CAAA,GAAIC,KAAkB,EAAE;AAAA,UAC/E,UAAUL,GAAU;AAAA,UACpB,OAAOA,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,SAASA,GAAU;AAAA,UACnB,iBAAiBA,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,aAAaA,GAAU;AAAA,UACvB,WAAWA,GAAU;AAAA,UACrB,cAAcA,GAAU;AAAA,UACxB,UAAUA,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,WAAWA,GAAU;AAAA,UACrB,UAAUA,GAAU;AAAA,UACpB,gBAAgBA,GAAU;AAAA,UAC1B,SAASA,GAAU;AAAA,UACnB,SAASA,GAAU;AAAA,UACnB,eAAeA,GAAU;AAAA,UACzB,cAAcA,GAAU;AAAA,UACxB,YAAYA,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,UAAUA,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,WAAWA,GAAU;AAAA,UACrB,gBAAgBA,GAAU;AAAA,UAC1B,WAAWA,GAAU;AAAA,UACrB,YAAYA,GAAU;AAAA,UACtB,WAAWA,GAAU;AAAA,UACrB,YAAYA,GAAU;AAAA,UACtB,WAAWA,GAAU;AAAA,UACrB,cAAcA,GAAU;AAAA,UACxB,eAAeA,GAAU;AAAA,UACzB,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,QAAA;AAAA,MAEvB,KAAK;AACH,eAAO;AAAA,UACL,SAASA,GAAU;AAAA,UACnB,WAAWA,GAAU;AAAA,UACrB,OAAOA,GAAU;AAAA,UACjB,6BAA6BA,GAAU;AAAA,UACvC,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,UACnB,kBAAkBA,GAAU;AAAA,UAC5B,UAAUA,GAAU;AAAA,UACpB,SAASA,GAAU;AAAA,UACnB,OAAOA,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,YAAaA,GAAU,cAAc,CAAA;AAAA,UACrC,MAAME;AAAA,UACN,UAAUF,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,UAAUA,GAAU;AAAA,UACpB,iBAAiBA,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,UACnB,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,QAAA;AAAA,MAE1B,KAAK;AACH,eAAO;AAAA,UACL,WAAWA,GAAU;AAAA,UACrB,OAAOA,GAAU;AAAA,UACjB,MAAMA,GAAU;AAAA,UAChB,MAAME;AAAA,UACN,YAAYF,GAAU,cAAc;AAAA,UACpC,kBAAkBA,GAAU;AAAA,UAC5B,QAAQA,GAAU;AAAA,UAClB,QAAQA,GAAU;AAAA,UAClB,SAASA,GAAU,WAAW,CAAA;AAAA,UAC9B,UAAUA,GAAU;AAAA,UACpB,iBAAiBA,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,UACnB,SAASA,GAAU;AAAA,UACnB,mBAAmBA,GAAU;AAAA,UAC7B,UAAUA,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,WAAWA,GAAU;AAAA,UACrB,WAAWA,GAAU;AAAA,UACrB,gBAAgBA,GAAU;AAAA,UAC1B,iBAAiBA,GAAU;AAAA,UAC3B,aAAaA,GAAU;AAAA,UACvB,eAAeA,GAAU;AAAA,UACzB,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,QAAQA,GAAU;AAAA,QAAA;AAAA,MAEtB,KAAK;AACH,eAAO;AAAA,UACL,WAAWA,GAAU;AAAA,UACrB,OAAOA,GAAU;AAAA,UACjB,eAAeA,GAAU;AAAA,UACzB,UAAUA,GAAU;AAAA,UACpB,aAAaA,GAAU;AAAA,UACvB,MAAMA,GAAU;AAAA,UAChB,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,UACnB,QAAQA,GAAU;AAAA,UAClB,kBAAkBA,GAAU;AAAA,UAC5B,UAAUA,GAAU;AAAA,UACpB,iBAAiBA,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,UACnB,SAASA,GAAU;AAAA,UACnB,eAAeA,GAAU;AAAA,UACzB,cAAcA,GAAU;AAAA,UACxB,UAAUA,GAAU;AAAA,UACpB,gBAAgBA,GAAU;AAAA,UAC1B,wBAAwBA,GAAU;AAAA,UAClC,MAAMA,GAAU;AAAA,UAChB,MAAME;AAAA,UACN,OAAOF,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,WAAWA,GAAU;AAAA,UACrB,gBAAgBA,GAAU;AAAA,UAC1B,WAAWA,GAAU;AAAA,UACrB,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,QAAA;AAAA,MAEvB,KAAK;AACH,eAAO;AAAA,UACL,cAAcA,GAAU;AAAA,UACxB,WAAWA,GAAU;AAAA,UACrB,OAAOA,GAAU;AAAA,UACjB,6BAA6BA,GAAU;AAAA,UACvC,MAAME;AAAA,UACN,YAAYF,GAAU;AAAA,UACtB,kBAAkBA,GAAU;AAAA,UAC5B,UAAUA,GAAU;AAAA,UACpB,OAAOA,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,SAASA,GAAU;AAAA,UACnB,YAAYA,GAAU;AAAA,UACtB,YAAYA,GAAU;AAAA,UACtB,aAAaA,GAAU;AAAA,UACvB,WAAWA,GAAU;AAAA,UACrB,cAAcA,GAAU;AAAA,UACxB,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,UACnB,iBAAiBA,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,UACnB,QAAQA,GAAU;AAAA,UAClB,QAAQA,GAAU;AAAA,UAClB,gBAAgBA,GAAU;AAAA,UAC1B,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,UACnB,eAAeA,GAAU;AAAA,UACzB,cAAcA,GAAU;AAAA,UACxB,eAAeA,GAAU;AAAA,UACzB,UAAUA,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,WAAWA,GAAU;AAAA,UACrB,cAAcA,GAAU;AAAA,UACxB,cAAcA,GAAU;AAAA,UACxB,mBAAmBA,GAAU;AAAA,UAC7B,mBAAmBA,GAAU;AAAA,UAC7B,aAAaA,GAAU;AAAA,UACvB,WAAWA,GAAU;AAAA,UACrB,6BAA6BA,GAAU;AAAA,UACvC,6BAA6BA,GAAU;AAAA,UACvC,oBAAoBA,GAAU;AAAA,UAC9B,aAAaA,GAAU;AAAA,UACvB,aAAaA,GAAU;AAAA,UACvB,WAAWA,GAAU;AAAA,UACrB,gBAAgBA,GAAU;AAAA,UAC1B,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,QAAA;AAAA,MAEvB,KAAK;AACH,eAAO;AAAA,UACL,OAAOA,GAAU;AAAA,UACjB,YAAYA,GAAU;AAAA,UACtB,SAASA,GAAU;AAAA,UACnB,kBAAkBA,GAAU;AAAA,UAC5B,UAAUA,GAAU;AAAA,UACpB,SAASA,GAAU;AAAA,UACnB,OAAOA,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,YAAaA,GAAU,cAAc,CAAA;AAAA,UACrC,MAAME;AAAA,UACN,UAAUF,GAAU;AAAA,UACpB,WAAWA,GAAU;AAAA,UACrB,cAAcA,GAAU;AAAA,UACxB,qBAAqBA,GAAU;AAAA,UAC/B,aAAaA,GAAU,eAAe,CAAA;AAAA,UACtC,oBAAoBA,GAAU;AAAA,UAC9B,mBAAmBA,GAAU;AAAA,UAC7B,cAAcA,GAAU;AAAA,UACxB,iBAAiBA,GAAU;AAAA,UAC3B,SAASA,GAAU;AAAA,UACnB,gBAAgBA,GAAU;AAAA,UAC1B,2BAA2BA,GAAU;AAAA,UACrC,kBAAkBA,GAAU;AAAA,UAC5B,QAAQA,GAAU;AAAA,UAClB,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,QAAA;AAAA,MAE1B,KAAK;AACH,eAAO;AAAA,UACL,cAAcA,GAAU;AAAA,UACxB,WAAWA,GAAU;AAAA,UACrB,YAAYA,GAAU;AAAA,UACtB,eAAeA,GAAU;AAAA,UACzB,kBAAkBA,GAAU;AAAA,UAC5B,UAAUA,GAAU;AAAA,UACpB,SAASA,GAAU;AAAA,UACnB,WAAWA,GAAU;AAAA,UACrB,QAAQA,GAAU;AAAA,UAClB,aAAaA,GAAU;AAAA,UACvB,kBAAkBA,GAAU;AAAA,UAC5B,iBAAiBA,GAAU;AAAA,UAC3B,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,OAAOA,GAAU;AAAA,UACjB,QAAQA,GAAU;AAAA,UAClB,WAAWA,GAAU;AAAA,UACrB,gBAAgBA,GAAU;AAAA,UAC1B,SAASA,GAAU;AAAA,UACnB,QAAQA,GAAU;AAAA,UAClB,YAAYA,GAAU;AAAA,UACtB,aAAaA,GAAU;AAAA,UACvB,WAAWA,GAAU;AAAA,UACrB,cAAcA,GAAU;AAAA,UACxB,UAAUA,GAAU;AAAA,UACpB,UAAUA,GAAU;AAAA,UACpB,YAAYA,GAAU;AAAA,UACtB,UAAUA,GAAU;AAAA,UACpB,aAAaA,GAAU;AAAA,UACvB,WAAWA,GAAU;AAAA,UACrB,WAAWA,GAAU;AAAA,UACrB,gBAAgBA,GAAU;AAAA,UAC1B,aAAaA,GAAU;AAAA,UACvB,kBAAkBA,GAAU;AAAA,UAC5B,YAAYA,GAAU;AAAA,UACtB,WAAWA,GAAU;AAAA,UACrB,6BAA6BA,GAAU;AAAA,UACvC,eAAeA,GAAU;AAAA,UACzB,cAAcA,GAAU;AAAA,UACxB,SAASA,GAAU;AAAA,UACnB,gBAAgBA,GAAU;AAAA,UAC1B,UAAUA,GAAU;AAAA,UACpB,OAAOA,GAAU;AAAA,UACjB,SAASA,GAAU;AAAA,UACnB,SAASA,GAAU;AAAA,QAAA;AAAA,MAEvB;AACE,eAAO,CAAA;AAAA,IAAC;AAAA,EAEd,GACM+C,IAAiBtC,EAAgBR,CAAK,GACtC+C,IAAaL,EAAc1C,CAAK;AACtC,SACEM,gBAAAA,EAAAA;AAAAA,IAAC;AAAA,IAAA;AAAA,MACC,WAAW,aACTN,MAAU,aAAa,YAAY,MACrC,4BAA4BD,GAAU,QAAQ,UAAU,QAAQ,IAC9DC,MAAU,eAAeA,MAAU,aAAa,mBAAmB,eACrE,IAAID,GAAU,SAAS,OAAO;AAAA,MAC9B,OAAO,EAAE,WAAW,UAAA;AAAA,MAEnB,UAAA+C,IACCxC,gBAAAA,MAACwC,GAAA,EAAgB,GAAGC,GAAY,IAEhCzC,gBAAAA,EAAAA;AAAAA,QAACC;AAAAA,QAAA;AAAA,UACC,MAAK;AAAA,UACL,cAAa;AAAA,UACb,WAAU;AAAA,UAET,iCAAuBP,CAAK;AAAA,QAAA;AAAA,MAAA;AAAA,IAC/B;AAAA,EAAA;AAIR;"}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";const n=require("./index-CHPV5EwG-DDoeWRVt.cjs"),c=require("./Typography-k-kOjICQ.cjs"),C=require("./ButterflyChart.cjs"),b=require("./index-CZLvTu6p.cjs"),w=require("./DataTable.cjs"),T=require("./DonutChart.cjs"),k=require("./HeatMap.cjs"),x=require("./Histogram.cjs"),y=require("./DualAxisLineChart.cjs"),L=require("./SimpleLineChart.cjs"),M=require("./MultiLineChart.cjs"),O=require("./MultiLineAltChart.cjs"),S=require("./SparkLine.cjs"),V=require("./BiVariateChoroplethMap.cjs"),N=require("./ChoroplethMap.cjs"),H=require("./DotDensityMap.cjs"),A=require("./ParetoChart.cjs"),v=require("./ScatterPlot.cjs"),B=require("./SlopeChart.cjs"),I=require("./AreaChart.cjs"),P=require("./StatCardFromData.cjs"),W=require("./TreeMapGraph.cjs"),j=require("./UnitChart.cjs"),q=require("./DifferenceLineChart.cjs"),z=require("./SankeyChart.cjs"),F=require("./LineChartWithConfidenceInterval.cjs"),X=require("./DataCards.cjs"),g=require("./BarGraph.cjs"),Y=require("./DumbbellChart.cjs"),E=require("./StripChart.cjs"),G=require("./BeeSwarmChart.cjs"),R=require("./RadarChart.cjs"),$=require("./BulletChart.cjs"),i=require("./checkIfMultiple-BXbHUCWM.cjs");function U(d){const{settings:e,graph:l,graphData:a,debugMode:p,graphDataConfiguration:t,readableHeader:o,updateFilters:s}=d;if(p&&(console.log(`Graph: ${l}`),console.log("Transformed data:",a),console.log("Settings:",e)),typeof a=="string")return n.jsxRuntimeExports.jsx("div",{className:`flex my-0 mx-auto grow flex-col justify-center ${e?.width?"w-fit":"w-full"}`,style:{height:"inherit"},children:n.jsxRuntimeExports.jsx(c.u,{size:"sm",marginBottom:"none",className:"p-2 text-center text-accent-dark-red dark:text-accent-red",children:a})});const u={barChart:g.SimpleBarGraph,bulletChart:$.BulletChart,groupedBarChart:g.GroupedBarGraph,stackedBarChart:g.StackedBarGraph,lineChart:L.SimpleLineChart,dualAxisLineChart:y.DualAxisLineChart,multiLineChart:M.MultiLineChart,multiLineAltChart:O.MultiLineAltChart,stackedAreaChart:I.AreaChart,choroplethMap:N.ChoroplethMap,biVariateChoroplethMap:V.BiVariateChoroplethMap,dotDensityMap:H.DotDensityMap,donutChart:T.DonutChart,slopeChart:B.SlopeChart,scatterPlot:v.ScatterPlot,dumbbellChart:Y.DumbbellChart,treeMap:W.TreeMapGraph,circlePacking:b.CirclePackingGraph,heatMap:k.HeatMap,stripChart:E.StripChart,beeSwarmChart:G.BeeSwarmChart,butterflyChart:C.ButterflyChart,histogram:x.Histogram,sparkLine:S.SparkLine,paretoChart:A.ParetoChart,dataTable:w.DataTable,statCard:P.StatCardFromData,unitChart:j.UnitChart,differenceLineChart:q.DifferenceLineChart,sankeyChart:z.SankeyChart,lineChartWithConfidenceInterval:F.LineChartWithConfidenceInterval,dataCards:X.DataCards,radarChart:R.RadarChart},m=f=>{switch(f){case"barChart":return{timeline:e?.timeline,customLayers:e?.customLayers,precision:e?.precision,theme:e?.theme,dimmedOpacity:e?.dimmedOpacity,orientation:e?.orientation,data:a,colors:e?.colors,graphTitle:e?.graphTitle,graphDescription:e?.graphDescription,footNote:e?.footNote,height:e?.height,width:e?.width,suffix:e?.suffix,prefix:e?.prefix,sources:e?.sources,barPadding:e?.barPadding,showValues:e?.showValues,showTicks:e?.showTicks,leftMargin:e?.leftMargin,rightMargin:e?.rightMargin,truncateBy:e?.truncateBy,colorDomain:e?.colorDomain,colorLegendTitle:Object.keys(e||{}).indexOf("colorLegendTitle")!==-1?e?.colorLegendTitle:i.getValues("color",t||[],o||[]),backgroundColor:e?.backgroundColor,padding:e?.padding,topMargin:e?.topMargin,bottomMargin:e?.bottomMargin,relativeHeight:e?.relativeHeight,showLabels:e?.showLabels,showColorScale:e?.showColorScale,maxValue:e?.maxValue,minValue:e?.minValue,labelOrder:e?.labelOrder,tooltip:e?.tooltip,refValues:e?.refValues,graphID:e?.graphID,highlightedDataPoints:e?.highlightedDataPoints,graphDownload:e?.graphDownload,dataDownload:e?.dataDownload,sortData:e?.sortData,language:e?.language,minHeight:e?.minHeight,showNAColor:e?.showNAColor,maxBarThickness:e?.maxBarThickness,minBarThickness:e?.minBarThickness,maxNumberOfBars:e?.maxNumberOfBars,ariaLabel:e?.ariaLabel,onSeriesMouseClick:r=>{s?.(r.label)},resetSelectionOnDoubleClick:e?.resetSelectionOnDoubleClick,detailsOnClick:e?.detailsOnClick,barAxisTitle:e?.barAxisTitle,noOfTicks:e?.noOfTicks,valueColor:e?.valueColor,styles:e?.styles,classNames:e?.classNames,filterNA:e?.filterNA,animate:e?.animate,naLabel:e?.naLabel};case"groupedBarChart":return{timeline:e?.timeline,customLayers:e?.customLayers,precision:e?.precision,theme:e?.theme,orientation:e?.orientation,sortParameter:e?.sortParameter,sortData:e?.sortData,data:a,colors:e?.colors,graphTitle:e?.graphTitle,graphDescription:e?.graphDescription,footNote:e?.footNote,width:e?.width,height:e?.height,showColorScale:e?.showColorScale,sources:e?.sources,barPadding:e?.barPadding,showTicks:e?.showTicks,truncateBy:e?.truncateBy,colorDomain:e?.colorDomain||i.getValues("size",t||[],o||[]),colorLegendTitle:e?.colorLegendTitle,suffix:e?.suffix,prefix:e?.prefix,showValues:e?.showValues,backgroundColor:e?.backgroundColor,padding:e?.padding,leftMargin:e?.leftMargin,rightMargin:e?.rightMargin,topMargin:e?.topMargin,showLabels:e?.showLabels,bottomMargin:e?.bottomMargin,relativeHeight:e?.relativeHeight,tooltip:e?.tooltip,refValues:e?.refValues,graphID:e?.graphID,labelOrder:e?.labelOrder,maxValue:e?.maxValue,minValue:e?.minValue,graphDownload:e?.graphDownload,dataDownload:e?.dataDownload,language:e?.language,minHeight:e?.minHeight,maxBarThickness:e?.maxBarThickness,ariaLabel:e?.ariaLabel,resetSelectionOnDoubleClick:e?.resetSelectionOnDoubleClick,detailsOnClick:e?.detailsOnClick,barAxisTitle:e?.barAxisTitle,noOfTicks:e?.noOfTicks,valueColor:e?.valueColor,styles:e?.styles,classNames:e?.classNames,animate:e?.animate,naLabel:e?.naLabel};case"stackedBarChart":return{timeline:e?.timeline,customLayers:e?.customLayers,precision:e?.precision,theme:e?.theme,orientation:e?.orientation,resetSelectionOnDoubleClick:e?.resetSelectionOnDoubleClick,data:a,colors:e?.colors,graphTitle:e?.graphTitle,graphDescription:e?.graphDescription,footNote:e?.footNote,showColorScale:e?.showColorScale,width:e?.width,height:e?.height,sources:e?.sources,barPadding:e?.barPadding,showTicks:e?.showTicks,leftMargin:e?.leftMargin,rightMargin:e?.rightMargin,truncateBy:e?.truncateBy,colorDomain:e?.colorDomain||i.getValues("size",t||[],o||[]),colorLegendTitle:e?.colorLegendTitle,backgroundColor:e?.backgroundColor,padding:e?.padding,topMargin:e?.topMargin,bottomMargin:e?.bottomMargin,suffix:e?.suffix,prefix:e?.prefix,labelOrder:e?.labelOrder,showValues:e?.showValues,showLabels:e?.showLabels,relativeHeight:e?.relativeHeight,tooltip:e?.tooltip,refValues:e?.refValues,graphID:e?.graphID,maxValue:e?.maxValue,graphDownload:e?.graphDownload,dataDownload:e?.dataDownload,language:e?.language,minHeight:e?.minHeight,maxBarThickness:e?.maxBarThickness,minBarThickness:e?.minBarThickness,maxNumberOfBars:e?.maxNumberOfBars,sortParameter:e?.sortParameter,sortData:e?.sortData,ariaLabel:e?.ariaLabel,detailsOnClick:e?.detailsOnClick,barAxisTitle:e?.barAxisTitle,noOfTicks:e?.noOfTicks,valueColor:e?.valueColor,styles:e?.styles,classNames:e?.classNames,animate:e?.animate,naLabel:e?.naLabel};case"bulletChart":return{customLayers:e?.customLayers,precision:e?.precision,theme:e?.theme,dimmedOpacity:e?.dimmedOpacity,orientation:e?.orientation,data:a,barColor:e?.colors,graphTitle:e?.graphTitle,graphDescription:e?.graphDescription,footNote:e?.footNote,height:e?.height,width:e?.width,suffix:e?.suffix,prefix:e?.prefix,sources:e?.sources,barPadding:e?.barPadding,showValues:e?.showValues,showTicks:e?.showTicks,leftMargin:e?.leftMargin,rightMargin:e?.rightMargin,truncateBy:e?.truncateBy,colorDomain:e?.colorDomain,colorLegendTitle:Object.keys(e||{}).indexOf("colorLegendTitle")!==-1?e?.colorLegendTitle:i.getValues("color",t||[],o||[]),backgroundColor:e?.backgroundColor,padding:e?.padding,topMargin:e?.topMargin,bottomMargin:e?.bottomMargin,relativeHeight:e?.relativeHeight,showLabels:e?.showLabels,showColorScale:e?.showColorScale,maxValue:e?.maxValue,minValue:e?.minValue,labelOrder:e?.labelOrder,tooltip:e?.tooltip,refValues:e?.refValues,graphID:e?.graphID,highlightedDataPoints:e?.highlightedDataPoints,graphDownload:e?.graphDownload,dataDownload:e?.dataDownload,sortData:e?.sortData,language:e?.language,minHeight:e?.minHeight,showNAColor:e?.showNAColor,maxBarThickness:e?.maxBarThickness,minBarThickness:e?.minBarThickness,maxNumberOfBars:e?.maxNumberOfBars,ariaLabel:e?.ariaLabel,onSeriesMouseClick:r=>{s?.(r.label)},resetSelectionOnDoubleClick:e?.resetSelectionOnDoubleClick,detailsOnClick:e?.detailsOnClick,barAxisTitle:e?.barAxisTitle,noOfTicks:e?.noOfTicks,valueColor:e?.valueColor,styles:e?.styles,classNames:e?.classNames,filterNA:e?.filterNA,qualitativeRangeColors:e?.qualitativeRangeColors,targetStyle:e?.targetStyle,targetColor:e?.targetColor,measureBarWidthFactor:e?.measureBarWidthFactor,animate:e?.animate,naLabel:e?.naLabel};case"lineChart":return{customLayers:e?.customLayers,precision:e?.precision,theme:e?.theme,curveType:e?.curveType,data:a,graphID:e?.graphID,lineColor:e?.lineColor,graphTitle:e?.graphTitle,graphDescription:e?.graphDescription,footNote:e?.footNote,width:e?.width,height:e?.height,suffix:e?.suffix,prefix:e?.prefix,sources:e?.sources,noOfXTicks:e?.noOfXTicks,dateFormat:e?.dateFormat,showValues:e?.showValues,backgroundColor:e?.backgroundColor,padding:e?.padding,leftMargin:e?.leftMargin,rightMargin:e?.rightMargin,topMargin:e?.topMargin,bottomMargin:e?.bottomMargin,relativeHeight:e?.relativeHeight,tooltip:e?.tooltip,refValues:e?.refValues,highlightAreaSettings:e?.highlightAreaSettings,maxValue:e?.maxValue,minValue:e?.minValue,graphDownload:e?.graphDownload,dataDownload:e?.dataDownload,language:e?.language,minHeight:e?.minHeight,animate:e?.animate,strokeWidth:e?.strokeWidth,showDots:e?.showDots,customHighlightAreaSettings:e?.customHighlightAreaSettings,annotations:e?.annotations,regressionLine:e?.regressionLine,ariaLabel:e?.ariaLabel,yAxisTitle:e?.yAxisTitle,noOfYTicks:e?.noOfYTicks,minDate:e?.minDate,maxDate:e?.maxDate,styles:e?.styles,classNames:e?.classNames};case"lineChartWithConfidenceInterval":return{customLayers:e?.customLayers,precision:e?.precision,theme:e?.theme,data:a,curveType:e?.curveType,graphID:e?.graphID,lineColor:e?.lineColor,graphTitle:e?.graphTitle,graphDescription:e?.graphDescription,footNote:e?.footNote,width:e?.width,height:e?.height,suffix:e?.suffix,prefix:e?.prefix,sources:e?.sources,noOfXTicks:e?.noOfXTicks,dateFormat:e?.dateFormat,showValues:e?.showValues,backgroundColor:e?.backgroundColor,padding:e?.padding,leftMargin:e?.leftMargin,rightMargin:e?.rightMargin,topMargin:e?.topMargin,bottomMargin:e?.bottomMargin,relativeHeight:e?.relativeHeight,tooltip:e?.tooltip,refValues:e?.refValues,highlightAreaSettings:e?.highlightAreaSettings,maxValue:e?.maxValue,minValue:e?.minValue,graphDownload:e?.graphDownload,dataDownload:e?.dataDownload,language:e?.language,minHeight:e?.minHeight,animate:e?.animate,strokeWidth:e?.strokeWidth,showDots:e?.showDots,customHighlightAreaSettings:e?.customHighlightAreaSettings,annotations:e?.annotations,regressionLine:e?.regressionLine,ariaLabel:e?.ariaLabel,showIntervalDots:e?.showIntervalDots,showIntervalValues:e?.showIntervalValues,intervalLineStrokeWidth:e?.intervalLineStrokeWidth,intervalLineColors:e?.intervalLineColors,intervalAreaColor:e?.intervalAreaColor,intervalAreaOpacity:e?.intervalAreaOpacity,yAxisTitle:e?.yAxisTitle,noOfYTicks:e?.noOfYTicks,minDate:e?.minDate,maxDate:e?.maxDate,colorLegendTitle:e?.colorLegendTitle,colorLegendColors:e?.colorLegendColors,colorLegendDomain:e?.colorLegendDomain,styles:e?.styles,classNames:e?.classNames};case"dualAxisLineChart":return{showAxisLabel:e?.showAxisLabels,showColorScale:e?.showColorScale,customLayers:e?.customLayers,precision:e?.precision,theme:e?.theme,data:a,curveType:e?.curveType,graphTitle:e?.graphTitle,graphDescription:e?.graphDescription,labels:e?.labels||[i.getValues("y1",t||[],o||[]),i.getValues("y2",t||[],o||[])],footNote:e?.footNote,width:e?.width,height:e?.height,suffix:e?.suffix,prefix:e?.prefix,sources:e?.sources,noOfXTicks:e?.noOfXTicks,dateFormat:e?.dateFormat,showValues:e?.showValues,backgroundColor:e?.backgroundColor,padding:e?.padding,leftMargin:e?.leftMargin,rightMargin:e?.rightMargin,topMargin:e?.topMargin,bottomMargin:e?.bottomMargin,lineColors:e?.lineColors,sameAxes:e?.sameAxes,relativeHeight:e?.relativeHeight,tooltip:e?.tooltip,highlightAreaSettings:e?.highlightAreaSettings,graphID:e?.graphID,graphDownload:e?.graphDownload,dataDownload:e?.dataDownload,language:e?.language,minHeight:e?.minHeight,animate:e?.animate,strokeWidth:e?.strokeWidth,showDots:e?.showDots,colorLegendTitle:e?.colorLegendTitle,ariaLabel:e?.ariaLabel,noOfYTicks:e?.noOfYTicks,minDate:e?.minDate,maxDate:e?.maxDate,lineSuffixes:e?.lineSuffixes,linePrefixes:e?.linePrefixes,styles:e?.styles,classNames:e?.classNames};case"multiLineChart":return{customLayers:e?.customLayers,precision:e?.precision,theme:e?.theme,dimmedOpacity:e?.dimmedOpacity,data:a,curveType:e?.curveType,lineColors:e?.lineColors,graphTitle:e?.graphTitle,graphDescription:e?.graphDescription,footNote:e?.footNote,width:e?.width,height:e?.height,sources:e?.sources,noOfXTicks:e?.noOfXTicks,dateFormat:e?.dateFormat,suffix:e?.suffix,prefix:e?.prefix,showColorScale:e?.showColorScale,labels:e?.labels||i.getValues("y",t||[],o||[]),backgroundColor:e?.backgroundColor,padding:e?.padding,leftMargin:e?.leftMargin,rightMargin:e?.rightMargin,topMargin:e?.topMargin,bottomMargin:e?.bottomMargin,showValues:e?.showValues,relativeHeight:e?.relativeHeight,showColorLegendAtTop:e?.showColorLegendAtTop,tooltip:e?.tooltip,refValues:e?.refValues,highlightAreaSettings:e?.highlightAreaSettings,graphID:e?.graphID,maxValue:e?.maxValue,minValue:e?.minValue,highlightedLines:e?.highlightedLines,graphDownload:e?.graphDownload,dataDownload:e?.dataDownload,language:e?.language,minHeight:e?.minHeight,animate:e?.animate,strokeWidth:e?.strokeWidth,showDots:e?.showDots,colorLegendTitle:e?.colorLegendTitle,customHighlightAreaSettings:e?.customHighlightAreaSettings,annotations:e?.annotations,ariaLabel:e?.ariaLabel,yAxisTitle:e?.yAxisTitle,noOfYTicks:e?.noOfYTicks,minDate:e?.minDate,maxDate:e?.maxDate,styles:e?.styles,classNames:e?.classNames,dashedLines:e?.dashedLines,dashSettings:e?.dashSettings,labelsToBeHidden:e?.labelsToBeHidden};case"multiLineAltChart":return{naLabel:e?.naLabel,customLayers:e?.customLayers,precision:e?.precision,theme:e?.theme,data:a,dimmedOpacity:e?.dimmedOpacity,curveType:e?.curveType,colors:e?.colors,graphTitle:e?.graphTitle,graphDescription:e?.graphDescription,footNote:e?.footNote,width:e?.width,height:e?.height,sources:e?.sources,noOfXTicks:e?.noOfXTicks,dateFormat:e?.dateFormat,suffix:e?.suffix,prefix:e?.prefix,backgroundColor:e?.backgroundColor,padding:e?.padding,leftMargin:e?.leftMargin,rightMargin:e?.rightMargin,topMargin:e?.topMargin,bottomMargin:e?.bottomMargin,relativeHeight:e?.relativeHeight,tooltip:e?.tooltip,refValues:e?.refValues,showLabels:e?.showLabels,highlightAreaSettings:e?.highlightAreaSettings,graphID:e?.graphID,maxValue:e?.maxValue,minValue:e?.minValue,highlightedLines:e?.highlightedLines,graphDownload:e?.graphDownload,dataDownload:e?.dataDownload,language:e?.language,minHeight:e?.minHeight,animate:e?.animate,strokeWidth:e?.strokeWidth,showDots:e?.showDots,colorLegendTitle:e?.colorLegendTitle,customHighlightAreaSettings:e?.customHighlightAreaSettings,annotations:e?.annotations,ariaLabel:e?.ariaLabel,yAxisTitle:e?.yAxisTitle,noOfYTicks:e?.noOfYTicks,minDate:e?.minDate,maxDate:e?.maxDate,styles:e?.styles,classNames:e?.classNames,colorDomain:e?.colorDomain,showNAColor:e?.showNAColor};case"differenceLineChart":return{customLayers:e?.customLayers,precision:e?.precision,theme:e?.theme,data:a,curveType:e?.curveType,lineColors:e?.lineColors,diffAreaColors:e?.diffAreaColors,graphTitle:e?.graphTitle,graphDescription:e?.graphDescription,footNote:e?.footNote,width:e?.width,height:e?.height,sources:e?.sources,noOfXTicks:e?.noOfXTicks,dateFormat:e?.dateFormat,suffix:e?.suffix,prefix:e?.prefix,labels:e?.labels||[i.getValues("y1",t||[],o||[]),i.getValues("y2",t||[],o||[])],backgroundColor:e?.backgroundColor,padding:e?.padding,leftMargin:e?.leftMargin,rightMargin:e?.rightMargin,topMargin:e?.topMargin,bottomMargin:e?.bottomMargin,showValues:e?.showValues,relativeHeight:e?.relativeHeight,showColorLegendAtTop:e?.showColorLegendAtTop,tooltip:e?.tooltip,refValues:e?.refValues,highlightAreaSettings:e?.highlightAreaSettings,graphID:e?.graphID,maxValue:e?.maxValue,minValue:e?.minValue,graphDownload:e?.graphDownload,dataDownload:e?.dataDownload,language:e?.language,minHeight:e?.minHeight,animate:e?.animate,strokeWidth:e?.strokeWidth,showDots:e?.showDots,colorLegendTitle:e?.colorLegendTitle,customHighlightAreaSettings:e?.customHighlightAreaSettings,annotations:e?.annotations,ariaLabel:e?.ariaLabel,yAxisTitle:e?.yAxisTitle,noOfYTicks:e?.noOfYTicks,minDate:e?.minDate,maxDate:e?.maxDate,styles:e?.styles,classNames:e?.classNames};case"stackedAreaChart":return{customLayers:e?.customLayers,precision:e?.precision,theme:e?.theme,data:a,curveType:e?.curveType,colors:e?.colors,graphTitle:e?.graphTitle,graphDescription:e?.graphDescription,footNote:e?.footNote,width:e?.width,height:e?.height,sources:e?.sources,noOfXTicks:e?.noOfXTicks,dateFormat:e?.dateFormat,colorDomain:e?.colorDomain||i.getValues("y",t||[],o||[]),backgroundColor:e?.backgroundColor,padding:e?.padding,colorLegendTitle:e?.colorLegendTitle,leftMargin:e?.leftMargin,rightMargin:e?.rightMargin,topMargin:e?.topMargin,relativeHeight:e?.relativeHeight,bottomMargin:e?.bottomMargin,tooltip:e?.tooltip,refValues:e?.refValues,highlightAreaSettings:e?.highlightAreaSettings,graphID:e?.graphID,maxValue:e?.maxValue,minValue:e?.minValue,graphDownload:e?.graphDownload,dataDownload:e?.dataDownload,showColorScale:e?.showColorScale,language:e?.language,minHeight:e?.minHeight,customHighlightAreaSettings:e?.customHighlightAreaSettings,annotations:e?.annotations,ariaLabel:e?.ariaLabel,yAxisTitle:e?.yAxisTitle,noOfYTicks:e?.noOfYTicks,suffix:e?.suffix,prefix:e?.prefix,styles:e?.styles,classNames:e?.classNames};case"choroplethMap":return{timeline:e?.timeline,customLayers:e?.customLayers,theme:e?.theme,dimmedOpacity:e?.dimmedOpacity,resetSelectionOnDoubleClick:e?.resetSelectionOnDoubleClick,graphTitle:e?.graphTitle,mapData:e?.mapData,mapProjection:e?.mapProjection,graphDescription:e?.graphDescription,footNote:e?.footNote,width:e?.width,height:e?.height,sources:e?.sources,colorDomain:e?.colorDomain,colors:e?.colors,colorLegendTitle:Object.keys(e||{}).indexOf("colorLegendTitle")!==-1?e?.colorLegendTitle:i.getValues("x",t||[],o||[]),scaleType:e?.scaleType,categorical:e?.categorical,data:a,scale:e?.scale,centerPoint:e?.centerPoint,backgroundColor:e?.backgroundColor,mapBorderWidth:e?.mapBorderWidth,mapNoDataColor:e?.mapNoDataColor,mapBorderColor:e?.mapBorderColor,relativeHeight:e?.relativeHeight,padding:e?.padding,isWorldMap:e?.isWorldMap,tooltip:e?.tooltip,showColorScale:e?.showColorScale,zoomScaleExtend:e?.zoomScaleExtend,zoomTranslateExtend:e?.zoomTranslateExtend,graphID:e?.graphID,highlightedIds:e?.highlightedIds,graphDownload:e?.graphDownload,dataDownload:e?.dataDownload,mapProperty:e?.mapProperty,showAntarctica:e?.showAntarctica,language:e?.language,minHeight:e?.minHeight,ariaLabel:e?.ariaLabel,onSeriesMouseClick:r=>{s?.(r.id)},detailsOnClick:e?.detailsOnClick,styles:e?.styles,classNames:e?.classNames,zoomInteraction:e?.zoomInteraction,animate:e?.animate};case"biVariateChoroplethMap":return{timeline:e?.timeline,customLayers:e?.customLayers,theme:e?.theme,dimmedOpacity:e?.dimmedOpacity,resetSelectionOnDoubleClick:e?.resetSelectionOnDoubleClick,data:a,mapData:e?.mapData,mapProjection:e?.mapProjection,graphTitle:e?.graphTitle,graphDescription:e?.graphDescription,footNote:e?.footNote,width:e?.width,height:e?.height,sources:e?.sources,xColorLegendTitle:Object.keys(e||{}).indexOf("xColorLegendTitle")!==-1?e?.xColorLegendTitle:i.getValues("x",t||[],o||[]),yColorLegendTitle:Object.keys(e||{}).indexOf("yColorLegendTitle")!==-1?e?.yColorLegendTitle:i.getValues("y",t||[],o||[]),xDomain:e?.xDomain,yDomain:e?.yDomain,colors:e?.colors,scale:e?.scale,centerPoint:e?.centerPoint,backgroundColor:e?.backgroundColor,mapBorderWidth:e?.mapBorderWidth,mapNoDataColor:e?.mapNoDataColor,padding:e?.padding,mapBorderColor:e?.mapBorderColor,relativeHeight:e?.relativeHeight,tooltip:e?.tooltip,isWorldMap:e?.isWorldMap,zoomScaleExtend:e?.zoomScaleExtend,zoomTranslateExtend:e?.zoomTranslateExtend,graphID:e?.graphID,highlightedIds:e?.highlightedIds,mapProperty:e?.mapProperty,graphDownload:e?.graphDownload,dataDownload:e?.dataDownload,showAntarctica:e?.showAntarctica,language:e?.language,minHeight:e?.minHeight,ariaLabel:e?.ariaLabel,onSeriesMouseClick:r=>{s?.(r.id)},detailsOnClick:e?.detailsOnClick,styles:e?.styles,classNames:e?.classNames,zoomInteraction:e?.zoomInteraction,animate:e?.animate};case"dotDensityMap":return{timeline:e?.timeline,customLayers:e?.customLayers,theme:e?.theme,dimmedOpacity:e?.dimmedOpacity,resetSelectionOnDoubleClick:e?.resetSelectionOnDoubleClick,graphTitle:e?.graphTitle,mapData:e?.mapData,mapProjection:e?.mapProjection,graphDescription:e?.graphDescription,footNote:e?.footNote,maxRadiusValue:e?.maxRadiusValue,width:e?.width,height:e?.height,radius:e?.radius,sources:e?.sources,colors:e?.colors,colorDomain:e?.colorDomain,colorLegendTitle:Object.keys(e||{}).indexOf("colorLegendTitle")!==-1?e?.colorLegendTitle:i.getValues("color",t||[],o||[]),data:a,scale:e?.scale,centerPoint:e?.centerPoint,backgroundColor:e?.backgroundColor,mapBorderWidth:e?.mapBorderWidth,mapNoDataColor:e?.mapNoDataColor,mapBorderColor:e?.mapBorderColor,padding:e?.padding,showLabels:e?.showLabels,relativeHeight:e?.relativeHeight,isWorldMap:e?.isWorldMap,tooltip:e?.tooltip,showColorScale:e?.showColorScale,zoomScaleExtend:e?.zoomScaleExtend,zoomTranslateExtend:e?.zoomTranslateExtend,graphID:e?.graphID,highlightedDataPoints:e?.highlightedDataPoints,graphDownload:e?.graphDownload,dataDownload:e?.dataDownload,showAntarctica:e?.showAntarctica,language:e?.language,minHeight:e?.minHeight,ariaLabel:e?.ariaLabel,detailsOnClick:e?.detailsOnClick,styles:e?.styles,classNames:e?.classNames,zoomInteraction:e?.zoomInteraction,animate:e?.animate};case"donutChart":return{precision:e?.precision,theme:e?.theme,resetSelectionOnDoubleClick:e?.resetSelectionOnDoubleClick,mainText:e?.mainText,data:a,colors:e?.colors,graphTitle:e?.graphTitle,suffix:e?.suffix,prefix:e?.prefix,sources:e?.sources,graphDescription:e?.graphDescription,subNote:e?.subNote,footNote:e?.footNote,radius:e?.radius,strokeWidth:e?.strokeWidth,showColorScale:e?.showColorScale,backgroundColor:e?.backgroundColor,padding:e?.padding,tooltip:e?.tooltip,graphID:e?.graphID,graphDownload:e?.graphDownload,dataDownload:e?.dataDownload,colorDomain:e?.colorDomain,sortData:e?.sortData,language:e?.language,width:e?.width,height:e?.height,minHeight:e?.minHeight,relativeHeight:e?.relativeHeight,topMargin:e?.topMargin,bottomMargin:e?.bottomMargin,ariaLabel:e?.ariaLabel,legendMaxWidth:e?.legendMaxWidth,onSeriesMouseClick:r=>{s?.(r.label)},detailsOnClick:e?.detailsOnClick,styles:e?.styles,classNames:e?.classNames,colorScaleMaxWidth:e?.colorScaleMaxWidth};case"slopeChart":return{customLayers:e?.customLayers,theme:e?.theme,dimmedOpacity:e?.dimmedOpacity,resetSelectionOnDoubleClick:e?.resetSelectionOnDoubleClick,data:a,graphTitle:e?.graphTitle,graphDescription:e?.graphDescription,footNote:e?.footNote,width:e?.width,height:e?.height,sources:e?.sources,showLabels:e?.showLabels,colors:e?.colors,colorDomain:e?.colorDomain,colorLegendTitle:Object.keys(e||{}).indexOf("colorLegendTitle")!==-1?e?.colorLegendTitle:i.getValues("color",t||[],o||[]),radius:e?.radius,axisTitles:e?.axisTitles,backgroundColor:e?.backgroundColor,padding:e?.padding,leftMargin:e?.leftMargin,rightMargin:e?.rightMargin,topMargin:e?.topMargin,bottomMargin:e?.bottomMargin,relativeHeight:e?.relativeHeight,tooltip:e?.tooltip,highlightedDataPoints:e?.highlightedDataPoints,showColorScale:e?.showColorScale,graphID:e?.graphID,maxValue:e?.maxValue,minValue:e?.minValue,graphDownload:e?.graphDownload,dataDownload:e?.dataDownload,fillContainer:e?.fillContainer,language:e?.language,minHeight:e?.minHeight,ariaLabel:e?.ariaLabel,detailsOnClick:e?.detailsOnClick,styles:e?.styles,classNames:e?.classNames,animate:e?.animate};case"scatterPlot":return{timeline:e?.timeline,customLayers:e?.customLayers,precision:e?.precision,theme:e?.theme,dimmedOpacity:e?.dimmedOpacity,resetSelectionOnDoubleClick:e?.resetSelectionOnDoubleClick,data:a,graphTitle:e?.graphTitle,graphDescription:e?.graphDescription,footNote:e?.footNote,width:e?.width,height:e?.height,sources:e?.sources,showLabels:e?.showLabels,colors:e?.colors,colorDomain:e?.colorDomain,colorLegendTitle:Object.keys(e||{}).indexOf("colorLegendTitle")!==-1?e?.colorLegendTitle:i.getValues("color",t||[],o||[]),radius:e?.radius,xAxisTitle:Object.keys(e||{}).indexOf("xAxisTitle")!==-1?e?.xAxisTitle:i.getValues("x",t||[],o||[]),yAxisTitle:Object.keys(e||{}).indexOf("yAxisTitle")!==-1?e?.yAxisTitle:i.getValues("y",t||[],o||[]),backgroundColor:e?.backgroundColor,padding:e?.padding,leftMargin:e?.leftMargin,rightMargin:e?.rightMargin,topMargin:e?.topMargin,bottomMargin:e?.bottomMargin,relativeHeight:e?.relativeHeight,tooltip:e?.tooltip,refXValues:e?.refXValues,refYValues:e?.refYValues,highlightedDataPoints:e?.highlightedDataPoints,highlightAreaSettings:e?.highlightAreaSettings,showColorScale:e?.showColorScale,graphID:e?.graphID,maxRadiusValue:e?.maxRadiusValue,maxXValue:e?.maxXValue,minXValue:e?.minXValue,maxYValue:e?.maxYValue,minYValue:e?.minYValue,graphDownload:e?.graphDownload,dataDownload:e?.dataDownload,language:e?.language,minHeight:e?.minHeight,showNAColor:e?.showNAColor,customHighlightAreaSettings:e?.customHighlightAreaSettings,annotations:e?.annotations,regressionLine:e?.regressionLine,ariaLabel:e?.ariaLabel,detailsOnClick:e?.detailsOnClick,noOfXTicks:e?.noOfXTicks,noOfYTicks:e?.noOfYTicks,labelColor:e?.labelColor,xSuffix:e?.xSuffix,ySuffix:e?.ySuffix,xPrefix:e?.xPrefix,yPrefix:e?.yPrefix,styles:e?.styles,classNames:e?.classNames,animate:e?.animate};case"dumbbellChart":return{timeline:e?.timeline,customLayers:e?.customLayers,precision:e?.precision,theme:e?.theme,orientation:e?.orientation,refValues:e?.refValues,resetSelectionOnDoubleClick:e?.resetSelectionOnDoubleClick,data:a,colors:e?.colors,graphTitle:e?.graphTitle,graphDescription:e?.graphDescription,footNote:e?.footNote,width:e?.width,height:e?.height,sources:e?.sources,barPadding:e?.barPadding,showTicks:e?.showTicks,leftMargin:e?.leftMargin,rightMargin:e?.rightMargin,topMargin:e?.topMargin,bottomMargin:e?.bottomMargin,truncateBy:e?.truncateBy,labelOrder:e?.labelOrder,showColorScale:e?.showColorScale,colorDomain:e?.colorDomain||i.getValues("x",t||[],o||[]),colorLegendTitle:e?.colorLegendTitle,backgroundColor:e?.backgroundColor,padding:e?.padding,radius:e?.radius,relativeHeight:e?.relativeHeight,showValues:e?.showValues,showLabels:e?.showLabels,tooltip:e?.tooltip,graphID:e?.graphID,maxValue:e?.maxValue,minValue:e?.minValue,graphDownload:e?.graphDownload,dataDownload:e?.dataDownload,suffix:e?.suffix,prefix:e?.prefix,language:e?.language,minHeight:e?.minHeight,sortParameter:e?.sortParameter,sortData:e?.sortData,arrowConnector:e?.arrowConnector,connectorStrokeWidth:e?.connectorStrokeWidth,maxBarThickness:e?.maxBarThickness,minBarThickness:e?.minBarThickness,maxNumberOfBars:e?.maxNumberOfBars,ariaLabel:e?.ariaLabel,detailsOnClick:e?.detailsOnClick,axisTitle:e?.axisTitle,noOfTicks:e?.noOfTicks,valueColor:e?.valueColor,styles:e?.styles,classNames:e?.classNames,animate:e?.animate,highlightedDataPoints:e?.highlightedDataPoints,dimmedOpacity:e?.dimmedOpacity};case"treeMap":return{precision:e?.precision,theme:e?.theme,dimmedOpacity:e?.dimmedOpacity,resetSelectionOnDoubleClick:e?.resetSelectionOnDoubleClick,data:a,colors:e?.colors,graphTitle:e?.graphTitle,graphDescription:e?.graphDescription,footNote:e?.footNote,width:e?.width,height:e?.height,suffix:e?.suffix,prefix:e?.prefix,sources:e?.sources,leftMargin:e?.leftMargin,rightMargin:e?.rightMargin,colorDomain:e?.colorDomain,colorLegendTitle:Object.keys(e||{}).indexOf("colorLegendTitle")!==-1?e?.colorLegendTitle:i.getValues("color",t||[],o||[]),backgroundColor:e?.backgroundColor,padding:e?.padding,topMargin:e?.topMargin,bottomMargin:e?.bottomMargin,relativeHeight:e?.relativeHeight,showLabels:e?.showLabels,tooltip:e?.tooltip,showColorScale:e?.showColorScale,showValues:e?.showValues,graphID:e?.graphID,highlightedDataPoints:e?.highlightedDataPoints,graphDownload:e?.graphDownload,dataDownload:e?.dataDownload,language:e?.language,minHeight:e?.minHeight,showNAColor:e?.showNAColor,ariaLabel:e?.ariaLabel,onSeriesMouseClick:r=>{s?.(r.label)},detailsOnClick:e?.detailsOnClick,styles:e?.styles,classNames:e?.classNames,animate:e?.animate};case"circlePacking":return{precision:e?.precision,theme:e?.theme,dimmedOpacity:e?.dimmedOpacity,resetSelectionOnDoubleClick:e?.resetSelectionOnDoubleClick,data:a,colors:e?.colors,graphTitle:e?.graphTitle,graphDescription:e?.graphDescription,footNote:e?.footNote,width:e?.width,height:e?.height,suffix:e?.suffix,prefix:e?.prefix,sources:e?.sources,leftMargin:e?.leftMargin,rightMargin:e?.rightMargin,colorDomain:e?.colorDomain,colorLegendTitle:Object.keys(e||{}).indexOf("colorLegendTitle")!==-1?e?.colorLegendTitle:i.getValues("color",t||[],o||[]),backgroundColor:e?.backgroundColor,padding:e?.padding,topMargin:e?.topMargin,bottomMargin:e?.bottomMargin,relativeHeight:e?.relativeHeight,showLabels:e?.showLabels,tooltip:e?.tooltip,showColorScale:e?.showColorScale,showValues:e?.showValues,graphID:e?.graphID,highlightedDataPoints:e?.highlightedDataPoints,graphDownload:e?.graphDownload,dataDownload:e?.dataDownload,language:e?.language,minHeight:e?.minHeight,showNAColor:e?.showNAColor,ariaLabel:e?.ariaLabel,radius:e?.radius,maxRadiusValue:e?.maxRadiusValue,onSeriesMouseClick:r=>{s?.(r.label)},detailsOnClick:e?.detailsOnClick,styles:e?.styles,classNames:e?.classNames,animate:e?.animate};case"heatMap":return{precision:e?.precision,theme:e?.theme,resetSelectionOnDoubleClick:e?.resetSelectionOnDoubleClick,data:a,colors:e?.colors,graphTitle:e?.graphTitle,graphDescription:e?.graphDescription,footNote:e?.footNote,width:e?.width,height:e?.height,sources:e?.sources,scaleType:e?.scaleType,colorDomain:e?.colorDomain,showColumnLabels:e?.showColumnLabels,leftMargin:e?.leftMargin,rightMargin:e?.rightMargin,truncateBy:e?.truncateBy,colorLegendTitle:Object.keys(e||{}).indexOf("colorLegendTitle")!==-1?e?.colorLegendTitle:i.getValues("color",t||[],o||[]),backgroundColor:e?.backgroundColor,padding:e?.padding,topMargin:e?.topMargin,bottomMargin:e?.bottomMargin,suffix:e?.suffix,prefix:e?.prefix,showValues:e?.showValues,showRowLabels:e?.showRowLabels,relativeHeight:e?.relativeHeight,tooltip:e?.tooltip,graphID:e?.graphID,noDataColor:e?.noDataColor,showColorScale:e?.showColorScale,graphDownload:e?.graphDownload,dataDownload:e?.dataDownload,fillContainer:e?.fillContainer,language:e?.language,minHeight:e?.minHeight,showNAColor:e?.showNAColor,ariaLabel:e?.ariaLabel,detailsOnClick:e?.detailsOnClick,styles:e?.styles,classNames:e?.classNames,animate:e?.animate};case"stripChart":return{customLayers:e?.customLayers,precision:e?.precision,theme:e?.theme,dimmedOpacity:e?.dimmedOpacity,orientation:e?.orientation,resetSelectionOnDoubleClick:e?.resetSelectionOnDoubleClick,data:a,graphTitle:e?.graphTitle,graphDescription:e?.graphDescription,footNote:e?.footNote,width:e?.width,height:e?.height,sources:e?.sources,colors:e?.colors,colorDomain:e?.colorDomain,colorLegendTitle:Object.keys(e||{}).indexOf("colorLegendTitle")!==-1?e?.colorLegendTitle:i.getValues("color",t||[],o||[]),radius:e?.radius,backgroundColor:e?.backgroundColor,padding:e?.padding,leftMargin:e?.leftMargin,rightMargin:e?.rightMargin,topMargin:e?.topMargin,bottomMargin:e?.bottomMargin,relativeHeight:e?.relativeHeight,tooltip:e?.tooltip,highlightedDataPoints:e?.highlightedDataPoints,showColorScale:e?.showColorScale,graphID:e?.graphID,maxValue:e?.maxValue,minValue:e?.minValue,noOfTicks:e?.noOfTicks,graphDownload:e?.graphDownload,dataDownload:e?.dataDownload,prefix:e?.prefix,suffix:e?.suffix,stripType:e?.stripType,valueColor:e?.valueColor,language:e?.language,minHeight:e?.minHeight,highlightColor:e?.highlightColor,dotOpacity:e?.dotOpacity,showNAColor:e?.showNAColor,ariaLabel:e?.ariaLabel,detailsOnClick:e?.detailsOnClick,styles:e?.styles,classNames:e?.classNames,animate:e?.animate};case"beeSwarmChart":return{customLayers:e?.customLayers,precision:e?.precision,theme:e?.theme,dimmedOpacity:e?.dimmedOpacity,resetSelectionOnDoubleClick:e?.resetSelectionOnDoubleClick,data:a,colors:e?.colors,graphTitle:e?.graphTitle,graphDescription:e?.graphDescription,footNote:e?.footNote,width:e?.width,height:e?.height,sources:e?.sources,showTicks:e?.showTicks,leftMargin:e?.leftMargin,rightMargin:e?.rightMargin,colorDomain:e?.colorDomain,colorLegendTitle:Object.keys(e||{}).indexOf("colorLegendTitle")!==-1?e?.colorLegendTitle:i.getValues("color",t||[],o||[]),backgroundColor:e?.backgroundColor,padding:e?.padding,topMargin:e?.topMargin,bottomMargin:e?.bottomMargin,relativeHeight:e?.relativeHeight,showLabels:e?.showLabels,showColorScale:e?.showColorScale,tooltip:e?.tooltip,refValues:e?.refValues,graphID:e?.graphID,radius:e?.radius,maxRadiusValue:e?.maxRadiusValue,maxValue:e?.maxValue,minValue:e?.minValue,highlightedDataPoints:e?.highlightedDataPoints,graphDownload:e?.graphDownload,dataDownload:e?.dataDownload,language:e?.language,minHeight:e?.minHeight,showNAColor:e?.showNAColor,ariaLabel:e?.ariaLabel,detailsOnClick:e?.detailsOnClick,orientation:e?.orientation,styles:e?.styles,classNames:e?.classNames,animate:e?.animate};case"butterflyChart":return{naLabel:e?.naLabel,timeline:e?.timeline,customLayers:e?.customLayers,precision:e?.precision,theme:e?.theme,resetSelectionOnDoubleClick:e?.resetSelectionOnDoubleClick,data:a,graphTitle:e?.graphTitle,graphDescription:e?.graphDescription,leftBarTitle:Object.keys(e||{}).indexOf("leftBarTitle")!==-1?e?.leftBarTitle:i.getValues("leftBar",t||[],o||[]),rightBarTitle:Object.keys(e||{}).indexOf("rightBarTitle")!==-1?e?.rightBarTitle:i.getValues("rightBar",t||[],o||[]),footNote:e?.footNote,width:e?.width,height:e?.height,sources:e?.sources,backgroundColor:e?.backgroundColor,padding:e?.padding,leftMargin:e?.leftMargin,rightMargin:e?.rightMargin,topMargin:e?.topMargin,bottomMargin:e?.bottomMargin,barColors:e?.barColors,relativeHeight:e?.relativeHeight,tooltip:e?.tooltip,graphID:e?.graphID,graphDownload:e?.graphDownload,dataDownload:e?.dataDownload,barPadding:e?.barPadding,truncateBy:e?.truncateBy,suffix:e?.suffix,prefix:e?.prefix,showTicks:e?.showTicks,showValues:e?.showValues,centerGap:e?.centerGap,maxValue:e?.maxValue,minValue:e?.minValue,showColorScale:e?.showColorScale,refValues:e?.refValues,language:e?.language,minHeight:e?.minHeight,ariaLabel:e?.ariaLabel,detailsOnClick:e?.detailsOnClick,styles:e?.styles,classNames:e?.classNames,animate:e?.animate};case"histogram":return{precision:e?.precision,theme:e?.theme,data:a,colors:e?.colors,graphTitle:e?.graphTitle,graphDescription:e?.graphDescription,footNote:e?.footNote,width:e?.width,height:e?.height,sources:e?.sources,barPadding:e?.barPadding,showValues:e?.showValues,showTicks:e?.showTicks,leftMargin:e?.leftMargin,rightMargin:e?.rightMargin,backgroundColor:e?.backgroundColor,padding:e?.padding,topMargin:e?.topMargin,bottomMargin:e?.bottomMargin,relativeHeight:e?.relativeHeight,showLabels:e?.showLabels,maxValue:e?.maxValue,tooltip:e?.tooltip,refValues:e?.refValues,graphID:e?.graphID,graphDownload:e?.graphDownload,dataDownload:e?.dataDownload,numberOfBins:e?.numberOfBins,truncateBy:e?.truncateBy,donutStrokeWidth:e?.donutStrokeWidth,sortData:e?.sortData,barGraphLayout:e?.barGraphLayout,graphType:e?.graphType,language:e?.language,minHeight:e?.minHeight,maxBarThickness:e?.maxBarThickness,ariaLabel:e?.ariaLabel,detailsOnClick:e?.detailsOnClick,styles:e?.styles,classNames:e?.classNames};case"sparkLine":return{customLayers:e?.customLayers,theme:e?.theme,data:a,curveType:e?.curveType,lineColor:e?.lineColor,graphTitle:e?.graphTitle,graphDescription:e?.graphDescription,footNote:e?.footNote,width:e?.width,height:e?.height,sources:e?.sources,dateFormat:e?.dateFormat,area:e?.area,backgroundColor:e?.backgroundColor,padding:e?.padding,leftMargin:e?.leftMargin,rightMargin:e?.rightMargin,topMargin:e?.topMargin,bottomMargin:e?.bottomMargin,relativeHeight:e?.relativeHeight,tooltip:e?.tooltip,graphID:e?.graphID,maxValue:e?.maxValue,minValue:e?.minValue,graphDownload:e?.graphDownload,dataDownload:e?.dataDownload,language:e?.language,minHeight:e?.minHeight,ariaLabel:e?.ariaLabel,styles:e?.styles,classNames:e?.classNames};case"paretoChart":return{showAxisLabel:e?.showAxisLabels,showColorScale:e?.showColorScale,naLabel:e?.naLabel,customLayers:e?.customLayers,precision:e?.precision,theme:e?.theme,resetSelectionOnDoubleClick:e?.resetSelectionOnDoubleClick,data:a,showValues:e?.showValues,graphTitle:e?.graphTitle,graphDescription:e?.graphDescription,barTitle:Object.keys(e||{}).indexOf("barTitle")!==-1?e?.barTitle:i.getValues("barTitle",t||[],o||[]),lineTitle:Object.keys(e||{}).indexOf("lineTitle")!==-1?e?.lineTitle:i.getValues("lineTitle",t||[],o||[]),footNote:e?.footNote,width:e?.width,height:e?.height,sources:e?.sources,backgroundColor:e?.backgroundColor,padding:e?.padding,leftMargin:e?.leftMargin,rightMargin:e?.rightMargin,topMargin:e?.topMargin,bottomMargin:e?.bottomMargin,barColor:e?.barColor,curveType:e?.curveType,lineColor:e?.lineColor,sameAxes:e?.sameAxes,relativeHeight:e?.relativeHeight,tooltip:e?.tooltip,graphID:e?.graphID,graphDownload:e?.graphDownload,dataDownload:e?.dataDownload,barPadding:e?.barPadding,truncateBy:e?.truncateBy,showLabels:e?.showLabels,language:e?.language,minHeight:e?.minHeight,ariaLabel:e?.ariaLabel,detailsOnClick:e?.detailsOnClick,noOfTicks:e?.noOfTicks,lineSuffix:e?.lineSuffix,barSuffix:e?.barSuffix,linePrefix:e?.lineSuffix,barPrefix:e?.barPrefix,barAxisTitle:e?.barAxisTitle,lineAxisTitle:e?.lineAxisTitle,styles:e?.styles,classNames:e?.classNames,animate:e?.animate};case"dataTable":return{naLabel:e?.naLabel,precision:e?.precision,theme:e?.theme,resetSelectionOnDoubleClick:e?.resetSelectionOnDoubleClick,graphTitle:e?.graphTitle,sources:e?.sources,graphDescription:e?.graphDescription,footNote:e?.footNote,graphID:e?.graphID,width:e?.width,height:e?.height,columnData:e?.columnData||[],data:a,language:e?.language,ariaLabel:e?.ariaLabel,minWidth:e?.minWidth,backgroundColor:e?.backgroundColor,padding:e?.padding,styles:e?.styles,classNames:e?.classNames};case"statCard":return{precision:e?.precision,theme:e?.theme,year:e?.year,data:a,graphTitle:e?.graphTitle||"",graphDescription:e?.graphDescription,suffix:e?.suffix,prefix:e?.prefix,sources:e?.sources||[],footNote:e?.footNote,backgroundColor:e?.backgroundColor,padding:e?.padding,graphID:e?.graphID,aggregationMethod:e?.aggregationMethod,language:e?.language,minHeight:e?.minHeight,countOnly:e?.countOnly,ariaLabel:e?.ariaLabel,textBackground:e?.textBackground,headingFontSize:e?.headingFontSize,centerAlign:e?.centerAlign,verticalAlign:e?.verticalAlign,styles:e?.styles,classNames:e?.classNames,layout:e?.layout};case"unitChart":return{precision:e?.precision,theme:e?.theme,totalNoOfDots:e?.totalNoOfDots,gridSize:e?.gridSize,unitPadding:e?.unitPadding,size:e?.size,graphTitle:e?.graphTitle,sources:e?.sources,colors:e?.colors,graphDescription:e?.graphDescription,footNote:e?.footNote,backgroundColor:e?.backgroundColor,padding:e?.padding,graphID:e?.graphID,graphDownload:e?.graphDownload,dataDownload:e?.dataDownload,language:e?.language,showColorScale:e?.showColorScale,showStrokeForWhiteDots:e?.showStrokeForWhiteDots,note:e?.note,data:a,width:e?.width,height:e?.height,minHeight:e?.minHeight,relativeHeight:e?.relativeHeight,ariaLabel:e?.ariaLabel,styles:e?.styles,classNames:e?.classNames,animate:e?.animate};case"sankeyChart":return{customLayers:e?.customLayers,precision:e?.precision,theme:e?.theme,resetSelectionOnDoubleClick:e?.resetSelectionOnDoubleClick,data:a,graphTitle:e?.graphTitle,graphDescription:e?.graphDescription,footNote:e?.footNote,width:e?.width,height:e?.height,sources:e?.sources,showLabels:e?.showLabels,leftMargin:e?.leftMargin,rightMargin:e?.rightMargin,topMargin:e?.topMargin,bottomMargin:e?.bottomMargin,truncateBy:e?.truncateBy,padding:e?.padding,backgroundColor:e?.backgroundColor,tooltip:e?.tooltip,suffix:e?.suffix,prefix:e?.prefix,relativeHeight:e?.relativeHeight,showValues:e?.showValues,graphID:e?.graphID,graphDownload:e?.graphDownload,dataDownload:e?.dataDownload,fillContainer:e?.fillContainer,language:e?.language,minHeight:e?.minHeight,ariaLabel:e?.ariaLabel,sourceColors:e?.sourceColors,targetColors:e?.targetColors,sourceColorDomain:e?.sourceColorDomain,targetColorDomain:e?.targetColorDomain,nodePadding:e?.nodePadding,nodeWidth:e?.nodeWidth,highlightedSourceDataPoints:e?.highlightedSourceDataPoints,highlightedTargetDataPoints:e?.highlightedTargetDataPoints,defaultLinkOpacity:e?.defaultLinkOpacity,sourceTitle:e?.sourceTitle,targetTitle:e?.targetTitle,sortNodes:e?.sortNodes,detailsOnClick:e?.detailsOnClick,styles:e?.styles,classNames:e?.classNames,animate:e?.animate};case"dataCards":return{theme:e?.theme,graphTitle:e?.graphTitle,sources:e?.sources,graphDescription:e?.graphDescription,footNote:e?.footNote,graphID:e?.graphID,width:e?.width,height:e?.height,columnData:e?.columnData||[],data:a,language:e?.language,ariaLabel:e?.ariaLabel,cardTemplate:e?.cardTemplate,cardBackgroundColor:e?.cardBackgroundColor,cardFilters:e?.cardFilters||[],cardSortingOptions:e?.cardSortingOptions,cardSearchColumns:e?.cardSearchColumns,cardMinWidth:e?.cardMinWidth,backgroundColor:e?.backgroundColor,padding:e?.padding,detailsOnClick:e?.detailsOnClick,allowDataDownloadOnDetail:e?.allowDataDownloadOnDetail,noOfItemsInAPage:e?.noOfItemsInAPage,uiMode:e?.uiMode,styles:e?.styles,classNames:e?.classNames};case"radarChart":return{customLayers:e?.customLayers,precision:e?.precision,graphTitle:e?.graphTitle,dimmedOpacity:e?.dimmedOpacity,graphDescription:e?.graphDescription,footNote:e?.footNote,sources:e?.sources,ariaLabel:e?.ariaLabel,colors:e?.colors,colorDomain:e?.colorDomain,colorLegendTitle:e?.colorLegendTitle,backgroundColor:e?.backgroundColor,styles:e?.styles,classNames:e?.classNames,width:e?.width,height:e?.height,minHeight:e?.minHeight,relativeHeight:e?.relativeHeight,padding:e?.padding,radius:e?.radius,leftMargin:e?.leftMargin,rightMargin:e?.rightMargin,topMargin:e?.topMargin,bottomMargin:e?.bottomMargin,maxValue:e?.maxValue,minValue:e?.minValue,showValues:e?.showValues,showDots:e?.showDots,strokeWidth:e?.strokeWidth,fillShape:e?.fillShape,noOfTicks:e?.noOfTicks,showColorScale:e?.showColorScale,showNAColor:e?.showNAColor,highlightedLines:e?.highlightedLines,axisLabels:e?.axisLabels,curveType:e?.curveType,resetSelectionOnDoubleClick:e?.resetSelectionOnDoubleClick,graphDownload:e?.graphDownload,dataDownload:e?.dataDownload,tooltip:e?.tooltip,detailsOnClick:e?.detailsOnClick,language:e?.language,theme:e?.theme,graphID:e?.graphID,animate:e?.animate};default:return{}}},h=u[l],D=m(l);return n.jsxRuntimeExports.jsx("div",{className:`grow my-0 ${l!=="statCard"?"mx-auto":"mx-0"} flex flex-col h-inherit ${e?.width?"w-fit":"w-full"} ${l!=="unitChart"&&l!=="statCard"?"justify-center":"justify-start"} ${e?.theme||"light"}`,style:{minHeight:"inherit"},children:h?n.jsxRuntimeExports.jsx(h,{...D}):n.jsxRuntimeExports.jsx(c.u,{size:"sm",marginBottom:"none",className:"p-2 text-center text-accent-dark-red dark:text-accent-red",children:`Invalid chart type: ${l}`})})}exports.GraphEl=U;
|
|
2
|
+
//# sourceMappingURL=GraphEl-DO-juRN8.cjs.map
|