@react-magma/charts 12.0.0-next.4 → 12.0.0-next.6

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.
@@ -104,8 +104,7 @@ export const ChartDataTable = (props: DataTableProps) => {
104
104
  });
105
105
 
106
106
  dataset.forEach((d: any, i: number) => {
107
- const yValue =
108
- d.y || d.y === 0 ? d.y : undefined || (yKeyValue && d[yKeyValue]);
107
+ const yValue = d.y !== undefined ? d.y : yKeyValue && d[yKeyValue];
109
108
  tableData.rows[i] = {
110
109
  ...tableData.rows[i],
111
110
  id: baseTableData.rows.length > 0 ? i + 1 : i,
package/dist/charts DELETED
@@ -1,390 +0,0 @@
1
- import*as e from"react";import{css as t}from"@emotion/react";import{Card as n,Datagrid as r,Spinner as o,useForceUpdate as a,StyledTooltip as i,ThemeContext as s,TooltipPosition as l,TooltipArrow as c,Checkbox as d,I18nContext as p,styled as u,Paragraph as f,TabsContainer as h,TabPanel as m,useDescendants as g,TypographyVisualStyle as b,Tabs as v,Tab as x,Tooltip as y,IconButton as k,ButtonVariant as w,Announce as I,TabPanelsContainer as S,useIsInverse as $}from"react-magma-dom";import{KeyboardIcon as P}from"react-magma-icons";import{jsx as L,jsxs as z,Fragment as F}from"react/jsx-runtime";import C from"@emotion/styled";import{LineSegment as E,Point as A,VictoryChart as j,VictoryVoronoiContainer as R,VictoryTooltip as O,VictoryAxis as W,VictoryLine as T,VictoryScatter as D}from"victory";import{AreaChart as H,StackedAreaChart as q,SimpleBarChart as _,GroupedBarChart as M,StackedBarChart as G,DonutChart as B,LineChart as K,LollipopChart as V,PieChart as Y,RadarChart as N,BoxplotChart as U,BubbleChart as X,BulletChart as Z,GaugeChart as J,HistogramChart as Q,MeterChart as ee,ScatterChart as te,ComboChart as ne}from"@carbon/charts-react";function re(){return re=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)({}).hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},re.apply(null,arguments)}function oe(e,t){if(null==e)return{};var n={};for(var r in e)if({}.hasOwnProperty.call(e,r)){if(-1!==t.indexOf(r))continue;n[r]=e[r]}return n}function ae(e){return e.toLowerCase().replace(/[^a-z 0-9]/gi,"").replace(/(?:^\w|[A-Z]|\b\w)/g,(e,t)=>0===t?e.toLowerCase():e.toUpperCase()).replace(/\s+/g,"")}const ie=t=>{const{data:a=[],xData:{keyValue:i,label:s,tickFormat:l,tickValues:c},yData:{keyValue:d,tickFormat:p}}=t,[u,f]=e.useState({columns:[],rows:[]});return e.useEffect(()=>{f(function(){const e=ae(i||s||"x"),t=a.reduce((e,{data:t})=>(t.forEach(t=>{const n=t.x||i&&t[i];!e.includes(n)&&e.push(n)}),e),[]),n={columns:t.length>0?[{field:e,header:s||i||"X",isRowHeader:!0}]:[],rows:t.reduce((n,r,o)=>{const a=c&&"number"==typeof r&&c.length===t.length?l&&"function"==typeof l?l(c[r-1]):c[r-1]:l&&Array.isArray(l)?l[r-1]:l&&"function"==typeof l?l(r):r;return n.push({[e]:a,id:o}),n},[])};return a.reduce((e,t)=>{const{name:r,data:o}=t,a=ae(r);return e.columns.push({field:a,header:r}),o.forEach((t,r)=>{const o=t.y||0===t.y?t.y:d&&t[d];e.rows[r]=re({},e.rows[r],{id:n.rows.length>0?r+1:r,[a]:p&&"function"==typeof p?p(o):o})}),e},n)}())},[a]),/*#__PURE__*/L(n,{children:u.rows.length>0?/*#__PURE__*/L(r,{hasPagination:!1,columns:u.columns,rows:u.rows}):/*#__PURE__*/L(o,{})})},se=["events"],le=e=>{let{events:t}=e,n=oe(e,se);/*#__PURE__*/return z("g",{children:[/*#__PURE__*/L(E,re({},n,{events:t,style:{strokeWidth:"50px",stroke:"transparent"}})),/*#__PURE__*/L(E,re({},n,{events:t,style:{strokeWidth:"1px",stroke:"black",strokeOpacity:"0.2"}}))]})},ce=["datum","index","lineIndex","pointRefArray","registerPoint","unregisterPoint"],de=["lineIndex","pointRefArray","pointIndex","registerPoint","unregisterPoint"],pe=e=>{const{datum:t,index:n,lineIndex:r,pointRefArray:o,registerPoint:a,unregisterPoint:i}=e,s=oe(e,ce);/*#__PURE__*/return L(A,re({},s,{ariaLabel:t.label,pathComponent:/*#__PURE__*/L(ue,{lineIndex:r,pointIndex:n,pointRefArray:o,registerPoint:a,unregisterPoint:i}),role:"button",tabIndex:0}))},ue=t=>{const{lineIndex:n,pointRefArray:r,pointIndex:o,registerPoint:i,unregisterPoint:s}=t,l=oe(t,de),c=a(),d=e.useRef(null);return e.useEffect(()=>(i(r,d),c(),()=>s(r,d)),[]),/*#__PURE__*/L("path",re({ref:d,"data-line-index":n,"data-point-index":o},l))};let fe,he,me=e=>e;const ge=C(i)(fe||(fe=me`
2
- background: ${0};
3
- border: 1px solid ${0};
4
- box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
5
- box-sizing: border-box;
6
- color: ${0};
7
- font-size: ${0};
8
- font-weight: normal;
9
- line-height: ${0};
10
- margin: 0;
11
- padding: 8px;
12
- width: fit-content;
13
- div {
14
- margin-bottom: 8px;
15
- display: flex;
16
- align-items: flex-start;
17
- &:last-of-type {
18
- margin-bottom: 0;
19
- }
20
- }
21
- `),e=>e.theme.colors.neutral100,e=>e.theme.colors.neutral300,e=>e.theme.colors.neutral,e=>e.theme.typeScale.size02.fontSize,e=>e.theme.typeScale.size02.lineHeight),be=C.span(he||(he=me`
22
- background: ${0};
23
- border: ${0};
24
- border-radius: 4px;
25
- height: 20px;
26
- width: 20px;
27
- margin-right: 8px;
28
- `),e=>e.color,e=>e.color?"none":"3px solid black"),ve=t=>{const{datum:n,index:r,showTooltip:o,x:a,y:i}=t,d=e.useContext(s);return o===`${r}-${n.index}`?/*#__PURE__*/L("g",{style:{pointerEvents:"none"},children:/*#__PURE__*/L("foreignObject",{x:a,y:i,width:"275",height:"100%",children:/*#__PURE__*/z(ge,{position:l.top,role:"tooltip",theme:d,children:[/*#__PURE__*/z("div",{children:[/*#__PURE__*/L(be,{color:d.iterableColors[r]}),/*#__PURE__*/L("span",{children:n.label})]}),/*#__PURE__*/L(c,{theme:d})]})})}):null},xe=t=>{const{x:n,y:r,activePoints:o,hiddenData:a,dataLength:i}=t,d=Array.from(Array(i-0),(e,t)=>t+0).filter(e=>!a.includes(e)),p=e.useContext(s);/*#__PURE__*/return L("g",{style:{pointerEvents:"none"},children:/*#__PURE__*/L("foreignObject",{x:n,y:r,width:"275",height:"100%",children:/*#__PURE__*/z(ge,{"data-testid":"axis-tooltip",position:l.top,role:"tooltip",theme:p,children:[o.map((e,t)=>/*#__PURE__*/z("div",{children:[/*#__PURE__*/L(be,{color:p.iterableColors[d[t]]}),/*#__PURE__*/L("span",{children:e.label})]},t)),/*#__PURE__*/L(c,{theme:p})]})})})},ye=["children","color","dataIndex","isHidden","onClick","name","focusCurrentLine","resetLineFocus"],ke=/*#__PURE__*/e.forwardRef((t,n)=>{const{color:r,dataIndex:o,isHidden:a,onClick:i,name:l,focusCurrentLine:c,resetLineFocus:p}=t,u=oe(t,ye);function f(){a||c&&"function"==typeof c&&c(o)}const h=e.useContext(s);/*#__PURE__*/return L("div",{style:{display:"inline-flex"},onMouseEnter:f,onMouseLeave:p,children:/*#__PURE__*/L(d,re({checked:!a,color:r,containerStyle:{alignItems:"center",border:"0",boxShadow:"0 0 0",color:h.colors.neutral,display:"inline-flex",margin:"0 36px 20px 0",padding:"0"},inputStyle:{border:r?"none":`2px solid ${h.colors.neutral800}`,borderRadius:"4px"},labelText:l,onBlur:p,onClick:function(){i&&"function"==typeof i&&i(o),a||p&&"function"==typeof p&&p()},onFocus:f,ref:n,theme:h},u))})}),we=["#00507A","#8F0033","#B84900","#255200","#711E6E","#005249"],Ie="#8F8F8F",Se="#3F3F3F",$e="pink",Pe={width:350,height:350,padding:50},Le={fontFamily:'"Work Sans",Helvetica,sans-serif',fontSize:12,letterSpacing:"normal",padding:8,fill:Se,stroke:"transparent",strokeWidth:0},ze=re({textAnchor:"middle"},Le),Fe="round",Ce="round",Ee={area:re({style:{data:{fill:$e},labels:Le}},Pe),axis:re({style:{axis:{fill:"transparent",stroke:Ie,strokeWidth:1,strokeLinecap:Fe,strokeLinejoin:Ce},axisLabel:re({},ze,{padding:8,stroke:"transparent"}),grid:{fill:"none",stroke:"#dfdfdf",strokeLinecap:Fe,strokeLinejoin:Ce,pointerEvents:"painted"},ticks:{fill:"transparent",size:0,stroke:Ie,strokeWidth:0,strokeLinecap:Fe,strokeLinejoin:Ce},tickLabels:re({},Le,{fill:Se})}},Pe),polarDependentAxis:{style:{ticks:{fill:"transparent",size:1,stroke:"transparent"}}},bar:re({style:{data:{fill:Se,padding:8,strokeWidth:0},labels:Le}},Pe),boxplot:re({style:{max:{padding:8,stroke:Se,strokeWidth:1},maxLabels:re({},Le,{padding:3}),median:{padding:8,stroke:Se,strokeWidth:1},medianLabels:re({},Le,{padding:3}),min:{padding:8,stroke:Se,strokeWidth:1},minLabels:re({},Le,{padding:3}),q1:{padding:8,fill:Se},q1Labels:re({},Le,{padding:3}),q3:{padding:8,fill:Se},q3Labels:re({},Le,{padding:3})},boxWidth:20},Pe),candlestick:re({style:{data:{stroke:Se},labels:re({},Le,{padding:5})},candleColors:{positive:"#ffffff",negative:Se}},Pe),chart:Pe,errorbar:re({borderWidth:8,style:{data:{fill:"transparent",opacity:1,stroke:Se,strokeWidth:2},labels:Le}},Pe),group:re({colorScale:we},Pe),histogram:re({style:{data:{fill:Se,stroke:$e,strokeWidth:2},labels:Le}},Pe),legend:{colorScale:we,gutter:10,orientation:"vertical",titleOrientation:"top",style:{data:{type:"circle"},labels:Le,title:re({},Le,{padding:5})}},line:re({style:{data:{fill:"transparent",opacity:1,stroke:Se,strokeWidth:2},labels:Le}},Pe),pie:re({colorScale:we,style:{data:{padding:8,stroke:"#DFDFDF",strokeWidth:1},labels:re({},Le,{padding:20})}},Pe),scatter:re({style:{data:{fill:Se,opacity:1,stroke:"transparent",strokeWidth:0},labels:Le}},Pe),stack:re({colorScale:we},Pe),tooltip:{style:re({},Le,{padding:0,pointerEvents:"none"}),flyoutStyle:{stroke:$e,strokeWidth:1,fill:"#f0f0f0",pointerEvents:"none"},flyoutPadding:5,cornerRadius:5,pointerLength:10},voronoi:re({style:{data:{fill:"transparent",stroke:"transparent",strokeWidth:0},labels:re({},Le,{padding:5,pointerEvents:"none"}),flyout:{stroke:$e,strokeWidth:1,fill:"#f0f0f0",pointerEvents:"none"}}},Pe)},Ae=["axisLabel","tickLabels"],je=["style"],Re=["axisLabel","tickLabels"],Oe=["style"];let We,Te,De,He,qe=e=>e;const _e=C.div(We||(We=qe`
29
- max-height: 600px;
30
- max-width: 800px;
31
- svg {
32
- overflow: visible;
33
- }
34
- `)),Me=C.div(Te||(Te=qe``)),Ge=C.div(De||(De=qe`
35
- padding-bottom: 24px;
36
- `)),Be=C.p(He||(He=qe`
37
- color: ${0};
38
- font-size: ${0};
39
- `),e=>e.theme.colors.neutral,e=>e.theme.typeScale.size02.fontSize);function Ke(t){const{componentProps:{chart:n={},line:r={},scatter:o={},xAxis:{style:{axisLabel:a,tickLabels:i}={}}={style:{}},yAxis:{style:{axisLabel:l,tickLabels:c}={}}={style:{}}}={},data:d=[],lastFocusedScatterPoint:u,pointRefArray:f,registerPoint:h,unregisterPoint:m,tabRef:g,x:b,y:v}=t,x=oe(t.componentProps.xAxis.style,Ae),y=oe(t.componentProps.xAxis,je),k=oe(t.componentProps.yAxis.style,Re),w=oe(t.componentProps.yAxis,Oe),I=e.useContext(s),S=e.useContext(p),[$,P]=e.useState([]),[C,E]=e.useState(800),[A,H]=e.useState(null),[q,_]=e.useState(null),[M,G]=e.useState(!0),[B,K]=e.useState(!1),V=e.useRef(null),Y=e.useRef(null);e.useEffect(()=>(Z(),window.addEventListener("resize",Z),window.addEventListener("keydown",J),()=>{window.removeEventListener("resize",Z),window.removeEventListener("keydown",J)}),[]),e.useEffect(()=>(window.addEventListener("mousemove",Q),()=>{window.removeEventListener("mousemove",Q)}),[q]);const N=d.map((e,t)=>`scatter-${t}`),U=re({tickLabels:re({color:"#3f3f3f",fontSize:12},i),axisLabel:re({color:"#3f3f3f",padding:44,fontSize:14,fontWeight:"bold"},a)},x),X=re({tickLabels:re({fontSize:12},c),axisLabel:re({color:"#3f3f3f",padding:64,fontSize:14,fontWeight:"bold"},l)},k);function Z(){V.current&&E(V.current.clientWidth)}function J(e){"Escape"===e.key&&(_(null),G(!1))}function Q(){!q&&G(!0)}function ee(e){return null===A||A===e?1:.1}function te(e){$.includes(e)?P($.filter(t=>t!==e)):P($.concat([e]))}function ne(e){H(e)}function ae(){H(null)}const ie=(e,t)=>{if(t.current){const n=parseInt(t.current.getAttribute("data-line-index"),10);!e.includes(n)&&e.push(parseInt(t.current.getAttribute("data-line-index"),10))}return e},se=e=>{const t=parseInt(e.current.getAttribute("data-line-index"),10),n=parseInt(e.current.getAttribute("data-point-index"),10),r=f.current.reduce(ie,[]);return{currentLineIndex:t,currentPointIndex:n,lineIndexes:r,lowestLineIndex:r[0],highestLineIndex:r[r.length-1]}},ce=(e,t)=>n=>n.current&&parseInt(n.current.getAttribute("data-line-index"),10)===e&&parseInt(n.current.getAttribute("data-point-index"),10)===t;function de(e){const{key:t,shiftKey:n}=e;"Tab"===t&&n&&u&&u.current&&f.current.find(e=>e.current===u.current)&&(e.preventDefault(),u.current.focus())}/*#__PURE__*/return z(_e,{ref:V,children:[/*#__PURE__*/L(Me,{onKeyDown:function(e){const{key:t,shiftKey:n}=e;switch(t){case"Tab":e.preventDefault(),u.current=f.current.find(e=>e.current===document.activeElement).current,n?g.current&&g.current.focus():Y.current&&Y.current.focus();break;case"ArrowRight":{const e=f.current.findIndex(e=>e.current===document.activeElement);var r;void 0!==e&&(e===f.current.length-1?null==(r=f.current[0])||null==(r=r.current)||r.focus():f.current[e+1].current.focus());break}case"ArrowLeft":{const e=f.current.findIndex(e=>e.current===document.activeElement);void 0!==e&&(0===e?f.current[f.current.length-1].current.focus():f.current[e-1].current.focus());break}case"ArrowUp":{e.preventDefault();const t=f.current.find(e=>e.current===document.activeElement);if(t&&t.current){const{currentLineIndex:e,currentPointIndex:n,lineIndexes:r,lowestLineIndex:o,highestLineIndex:a}=se(t);if(e===o)f.current.find(ce(a,n)).current.focus();else{const t=r[r.indexOf(e)-1];f.current.find(ce(t,n)).current.focus()}}break}case"ArrowDown":{e.preventDefault();const t=f.current.find(e=>e.current===document.activeElement);if(t&&t.current){const{currentLineIndex:e,currentPointIndex:n,lineIndexes:r,lowestLineIndex:o,highestLineIndex:a}=se(t);if(e===a)f.current.find(ce(o,n)).current.focus();else{const t=r[r.indexOf(e)+1];f.current.find(ce(t,n)).current.focus()}}break}}},children:/*#__PURE__*/z(j,re({domainPadding:32,height:400,padding:{top:0,left:80,right:0,bottom:62},theme:Ee,width:C,containerComponent:/*#__PURE__*/L(R,{name:"xAxisGroupLabel",voronoiBlacklist:N,voronoiDimension:"x",labels:B&&M?()=>" ":void 0,labelComponent:M?/*#__PURE__*/L(O,{flyoutComponent:/*#__PURE__*/L(xe,{dataLength:d.length,hiddenData:$})}):void 0,role:"presentation",voronoiPadding:32})},n,{children:[/*#__PURE__*/L(W,re({},w,{dependentAxis:!0,style:X})),d.map(({data:e},t)=>!$.includes(t)&&/*#__PURE__*/L(T,re({style:{data:{opacity:ee(t),stroke:I.iterableColors[t],strokeWidth:"3"},parent:{border:I.colors.neutral400}},data:e,labelComponent:/*#__PURE__*/L(F,{}),x:b,y:v},r),`line${t}`)),/*#__PURE__*/L(W,re({},y,{style:U,gridComponent:/*#__PURE__*/L(le,{events:{onMouseEnter:()=>K(!0),onMouseLeave:()=>K(!1)}})})),d.map(({data:e},t)=>!$.includes(t)&&/*#__PURE__*/L(D,re({name:`scatter-${t}`,events:[{target:"data",eventHandlers:{onBlur:()=>(G(!0),_(null),[{target:"labels",mutation:()=>({active:void 0})}]),onClick:()=>[{target:"labels",mutation:e=>(_(`${e.datum.lineIndex}-${e.datum.index}`),{active:!0})}],onFocus:()=>(G(!1),[{target:"labels",mutation:e=>(_(`${e.datum.lineIndex}-${e.datum.index}`),{active:!0})}]),onMouseEnter:()=>(G(!1),[{target:"labels",mutation:e=>(_(`${e.datum.lineIndex}-${e.datum.index}`),{active:!0})}]),onMouseLeave:()=>{_(null),G(!0)}}}],style:{data:{fill:I.colors.neutral100,opacity:ee(t),stroke:I.iterableColors[t],strokeWidth:2}},size:5,data:e.map((e,n)=>re({index:n,lineIndex:t},e)),dataComponent:/*#__PURE__*/L(pe,{lineIndex:t,pointRefArray:f,registerPoint:h,unregisterPoint:m}),labels:()=>"",labelComponent:/*#__PURE__*/L(O,{text:"",flyoutComponent:/*#__PURE__*/L(ve,{index:t,showTooltip:q})}),x:b,y:v},o),`scatter${t}`))]}))}),/*#__PURE__*/z(Ge,{children:[/*#__PURE__*/L(Be,{theme:I,children:S.charts.line.dataLegendsLabel}),d.map(({name:e},t)=>{const n=S.charts.line.legendButtonAriaLabel.replace(/\{name\}/g,e);/*#__PURE__*/return L(ke,{"aria-label":n,color:I.iterableColors[t],dataIndex:t,isHidden:$.includes(t),name:e,onClick:te,onKeyDown:0===t?de:void 0,focusCurrentLine:ne,ref:0===t?Y:void 0,resetLineFocus:ae},t)})]})]})}const Ve=["description","title","testId","type"];let Ye,Ne,Ue,Xe,Ze,Je,Qe=e=>e;const et=u.span(Ye||(Ye=Qe`
40
- color: ${0};
41
- font-size: ${0};
42
- font-weight: 600;
43
- font-family: ${0};
44
- line-height: ${0};
45
- margin: 0 0 12px 0;
46
- `),e=>e.theme.colors.neutral,e=>e.theme.typeScale.size04.fontSize,e=>e.theme.bodyFont,e=>e.theme.typeScale.size04.lineHeight),tt=u(f)(Ne||(Ne=Qe`
47
- font-size: ${0};
48
- margin: 0 0 18px 0;
49
- `),e=>e.theme.typeScale.size02.fontSize),nt=u(h)(Ue||(Ue=Qe`
50
- width: 800px;
51
- ul {
52
- box-shadow: inset 0 -1px 0 ${0};
53
- }
54
- `),e=>e.theme.colors.neutral300),rt=u(m)(Xe||(Xe=Qe`
55
- padding: 22px 0;
56
- `)),ot=u(n)(Ze||(Ze=Qe`
57
- box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
58
- display: ${0};
59
- right: ${0};
60
- max-height: ${0};
61
- opacity: ${0};
62
- outline: 0;
63
- overflow-y: auto;
64
- padding: ${0}
65
- ${0};
66
- position: absolute;
67
- transition: opacity 0.3s;
68
- white-space: nowrap;
69
- z-index: 2;
70
-
71
- ${0}
72
- `),e=>e.isOpen?"block":"none",e=>e.theme.spaceScale.spacing02,e=>e.maxHeight?e.maxHeight:e.theme.dropdown.content.maxHeight,e=>e.isOpen?"1":"0",e=>e.theme.spaceScale.spacing05,e=>e.theme.spaceScale.spacing05,e=>e.width&&t(Je||(Je=Qe`
73
- white-space: normal;
74
- width: ${0};
75
- `),e.width));function at(t,n){var r,o,a;const{description:i,title:l,type:c}=t,d=oe(t,Ve),u=e.useRef(null),h=e.useRef(null),m=e.useContext(s),$=e.useContext(p),[F,C,E]=g(),[A,j]=e.useState(!1);/*#__PURE__*/return z("div",{ref:n,children:[/*#__PURE__*/L(et,{theme:m,children:l}),i&&/*#__PURE__*/L(tt,{theme:m,visualStyle:b.bodySmall,children:i}),/*#__PURE__*/z(nt,{theme:m,children:[/*#__PURE__*/z(v,{children:[/*#__PURE__*/L(x,{children:$.charts.line.chartTabLabel}),/*#__PURE__*/L(x,{children:$.charts.line.dataTabLabel}),/*#__PURE__*/z("div",{onBlur:function(){j(!1)},style:{display:"inline-block",marginLeft:"auto"},children:[/*#__PURE__*/L(y,{content:$.charts.line.keyboardInstructionsTooltip,ref:u,children:/*#__PURE__*/L(k,{"aria-controls":"keyboardInstructions","aria-label":$.charts.line.keyboardInstructionsTooltip,"aria-expanded":Boolean(A),icon:/*#__PURE__*/L(P,{}),onClick:function(){j(e=>!e)},onKeyDown:function(e){const{key:t,shiftKey:n}=e;switch(t){case"Escape":j(!1);break;case"Tab":!n&&h&&h.current&&F.current.find(e=>e.current===h.current)&&(e.preventDefault(),h.current.focus())}},variant:w.link})}),/*#__PURE__*/L(I,{children:/*#__PURE__*/z(ot,{id:"keyboardInstructions",isOpen:A,theme:m,width:"350px",children:[/*#__PURE__*/L(f,{visualStyle:b.headingXSmall,style:{margin:"0 0 16px"},children:$.charts.line.keyboardInstructionsHeader}),$.charts.line.keyboardInstructions]})})]})]}),/*#__PURE__*/z(S,{children:[/*#__PURE__*/L(rt,{theme:m,children:"line"===c&&/*#__PURE__*/L(Ke,re({},d,{lastFocusedScatterPoint:h,pointRefArray:F,registerPoint:C,tabRef:u,unregisterPoint:E}))}),/*#__PURE__*/L(rt,{theme:m,children:/*#__PURE__*/L(ie,{data:d.data,xData:{keyValue:d.x,label:null==(r=d.componentProps)||null==(r=r.xAxis)?void 0:r.label,tickFormat:null==(o=d.componentProps)||null==(o=o.xAxis)?void 0:o.tickFormat},yData:{keyValue:d.y,tickFormat:null==(a=d.componentProps)||null==(a=a.yAxis)?void 0:a.tickFormat}})})]})]})]})}const it=/*#__PURE__*/e.forwardRef(at);function st(){return st=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)({}).hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},st.apply(null,arguments)}function lt(e,t){return lt=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},lt(e,t)}function ct(e){return ct=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},ct(e)}function dt(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(e){}return(dt=function(){return!!e})()}function pt(e){var t="function"==typeof Map?new Map:void 0;return pt=function(e){if(null===e||!function(e){try{return-1!==Function.toString.call(e).indexOf("[native code]")}catch(t){return"function"==typeof e}}(e))return e;if("function"!=typeof e)throw new TypeError("Super expression must either be null or a function");if(void 0!==t){if(t.has(e))return t.get(e);t.set(e,n)}function n(){return function(e,t,n){if(dt())return Reflect.construct.apply(null,arguments);var r=[null];r.push.apply(r,t);var o=new(e.bind.apply(e,r));return n&&lt(o,n.prototype),o}(e,arguments,ct(this).constructor)}return n.prototype=Object.create(e.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),lt(n,e)},pt(e)}var ut={1:"Passed invalid arguments to hsl, please pass multiple numbers e.g. hsl(360, 0.75, 0.4) or an object e.g. rgb({ hue: 255, saturation: 0.4, lightness: 0.75 }).\n\n",2:"Passed invalid arguments to hsla, please pass multiple numbers e.g. hsla(360, 0.75, 0.4, 0.7) or an object e.g. rgb({ hue: 255, saturation: 0.4, lightness: 0.75, alpha: 0.7 }).\n\n",3:"Passed an incorrect argument to a color function, please pass a string representation of a color.\n\n",4:"Couldn't generate valid rgb string from %s, it returned %s.\n\n",5:"Couldn't parse the color string. Please provide the color as a string in hex, rgb, rgba, hsl or hsla notation.\n\n",6:"Passed invalid arguments to rgb, please pass multiple numbers e.g. rgb(255, 205, 100) or an object e.g. rgb({ red: 255, green: 205, blue: 100 }).\n\n",7:"Passed invalid arguments to rgba, please pass multiple numbers e.g. rgb(255, 205, 100, 0.75) or an object e.g. rgb({ red: 255, green: 205, blue: 100, alpha: 0.75 }).\n\n",8:"Passed invalid argument to toColorString, please pass a RgbColor, RgbaColor, HslColor or HslaColor object.\n\n",9:"Please provide a number of steps to the modularScale helper.\n\n",10:"Please pass a number or one of the predefined scales to the modularScale helper as the ratio.\n\n",11:'Invalid value passed as base to modularScale, expected number or em string but got "%s"\n\n',12:'Expected a string ending in "px" or a number passed as the first argument to %s(), got "%s" instead.\n\n',13:'Expected a string ending in "px" or a number passed as the second argument to %s(), got "%s" instead.\n\n',14:'Passed invalid pixel value ("%s") to %s(), please pass a value like "12px" or 12.\n\n',15:'Passed invalid base value ("%s") to %s(), please pass a value like "12px" or 12.\n\n',16:"You must provide a template to this method.\n\n",17:"You passed an unsupported selector state to this method.\n\n",18:"minScreen and maxScreen must be provided as stringified numbers with the same units.\n\n",19:"fromSize and toSize must be provided as stringified numbers with the same units.\n\n",20:"expects either an array of objects or a single object with the properties prop, fromSize, and toSize.\n\n",21:"expects the objects in the first argument array to have the properties `prop`, `fromSize`, and `toSize`.\n\n",22:"expects the first argument object to have the properties `prop`, `fromSize`, and `toSize`.\n\n",23:"fontFace expects a name of a font-family.\n\n",24:"fontFace expects either the path to the font file(s) or a name of a local copy.\n\n",25:"fontFace expects localFonts to be an array.\n\n",26:"fontFace expects fileFormats to be an array.\n\n",27:"radialGradient requries at least 2 color-stops to properly render.\n\n",28:"Please supply a filename to retinaImage() as the first argument.\n\n",29:"Passed invalid argument to triangle, please pass correct pointingDirection e.g. 'right'.\n\n",30:"Passed an invalid value to `height` or `width`. Please provide a pixel based unit.\n\n",31:"The animation shorthand only takes 8 arguments. See the specification for more information: http://mdn.io/animation\n\n",32:"To pass multiple animations please supply them in arrays, e.g. animation(['rotate', '2s'], ['move', '1s'])\nTo pass a single animation please supply them in simple values, e.g. animation('rotate', '2s')\n\n",33:"The animation shorthand arrays can only have 8 elements. See the specification for more information: http://mdn.io/animation\n\n",34:"borderRadius expects a radius value as a string or number as the second argument.\n\n",35:'borderRadius expects one of "top", "bottom", "left" or "right" as the first argument.\n\n',36:"Property must be a string value.\n\n",37:"Syntax Error at %s.\n\n",38:"Formula contains a function that needs parentheses at %s.\n\n",39:"Formula is missing closing parenthesis at %s.\n\n",40:"Formula has too many closing parentheses at %s.\n\n",41:"All values in a formula must have the same unit or be unitless.\n\n",42:"Please provide a number of steps to the modularScale helper.\n\n",43:"Please pass a number or one of the predefined scales to the modularScale helper as the ratio.\n\n",44:"Invalid value passed as base to modularScale, expected number or em/rem string but got %s.\n\n",45:"Passed invalid argument to hslToColorString, please pass a HslColor or HslaColor object.\n\n",46:"Passed invalid argument to rgbToColorString, please pass a RgbColor or RgbaColor object.\n\n",47:"minScreen and maxScreen must be provided as stringified numbers with the same units.\n\n",48:"fromSize and toSize must be provided as stringified numbers with the same units.\n\n",49:"Expects either an array of objects or a single object with the properties prop, fromSize, and toSize.\n\n",50:"Expects the objects in the first argument array to have the properties prop, fromSize, and toSize.\n\n",51:"Expects the first argument object to have the properties prop, fromSize, and toSize.\n\n",52:"fontFace expects either the path to the font file(s) or a name of a local copy.\n\n",53:"fontFace expects localFonts to be an array.\n\n",54:"fontFace expects fileFormats to be an array.\n\n",55:"fontFace expects a name of a font-family.\n\n",56:"linearGradient requries at least 2 color-stops to properly render.\n\n",57:"radialGradient requries at least 2 color-stops to properly render.\n\n",58:"Please supply a filename to retinaImage() as the first argument.\n\n",59:"Passed invalid argument to triangle, please pass correct pointingDirection e.g. 'right'.\n\n",60:"Passed an invalid value to `height` or `width`. Please provide a pixel based unit.\n\n",61:"Property must be a string value.\n\n",62:"borderRadius expects a radius value as a string or number as the second argument.\n\n",63:'borderRadius expects one of "top", "bottom", "left" or "right" as the first argument.\n\n',64:"The animation shorthand only takes 8 arguments. See the specification for more information: http://mdn.io/animation.\n\n",65:"To pass multiple animations please supply them in arrays, e.g. animation(['rotate', '2s'], ['move', '1s'])\\nTo pass a single animation please supply them in simple values, e.g. animation('rotate', '2s').\n\n",66:"The animation shorthand arrays can only have 8 elements. See the specification for more information: http://mdn.io/animation.\n\n",67:"You must provide a template to this method.\n\n",68:"You passed an unsupported selector state to this method.\n\n",69:'Expected a string ending in "px" or a number passed as the first argument to %s(), got %s instead.\n\n',70:'Expected a string ending in "px" or a number passed as the second argument to %s(), got %s instead.\n\n',71:'Passed invalid pixel value %s to %s(), please pass a value like "12px" or 12.\n\n',72:'Passed invalid base value %s to %s(), please pass a value like "12px" or 12.\n\n',73:"Please provide a valid CSS variable.\n\n",74:"CSS variable not found and no default was provided.\n\n",75:"important requires a valid style object, got a %s instead.\n\n",76:"fromSize and toSize must be provided as stringified numbers with the same units as minScreen and maxScreen.\n\n",77:'remToPx expects a value in "rem" but you provided it in "%s".\n\n',78:'base must be set in "px" or "%" but you set it in "%s".\n'};function ft(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r,o=t[0],a=[];for(r=1;r<t.length;r+=1)a.push(t[r]);return a.forEach(function(e){o=o.replace(/%[a-z]/,e)}),o}var ht=/*#__PURE__*/function(e){var t,n;function r(t){var n;if("production"===process.env.NODE_ENV)n=e.call(this,"An error occurred. See https://github.com/styled-components/polished/blob/main/src/internalHelpers/errors.md#"+t+" for more information.")||this;else{for(var r=arguments.length,o=new Array(r>1?r-1:0),a=1;a<r;a++)o[a-1]=arguments[a];n=e.call(this,ft.apply(void 0,[ut[t]].concat(o)))||this}return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(n)}return n=e,(t=r).prototype=Object.create(n.prototype),t.prototype.constructor=t,lt(t,n),r}(/*#__PURE__*/pt(Error));function mt(e){return Math.round(255*e)}function gt(e,t,n){return mt(e)+","+mt(t)+","+mt(n)}function bt(e,t,n,r){if(void 0===r&&(r=gt),0===t)return r(n,n,n);var o=(e%360+360)%360/60,a=(1-Math.abs(2*n-1))*t,i=a*(1-Math.abs(o%2-1)),s=0,l=0,c=0;o>=0&&o<1?(s=a,l=i):o>=1&&o<2?(s=i,l=a):o>=2&&o<3?(l=a,c=i):o>=3&&o<4?(l=i,c=a):o>=4&&o<5?(s=i,c=a):o>=5&&o<6&&(s=a,c=i);var d=n-a/2;return r(s+d,l+d,c+d)}var vt={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"00ffff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"0000ff",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"00ffff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"ff00ff",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"639",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"},xt=/^#[a-fA-F0-9]{6}$/,yt=/^#[a-fA-F0-9]{8}$/,kt=/^#[a-fA-F0-9]{3}$/,wt=/^#[a-fA-F0-9]{4}$/,It=/^rgb\(\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*\)$/i,St=/^rgb(?:a)?\(\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,|\/)\s*([-+]?\d*[.]?\d+[%]?)\s*\)$/i,$t=/^hsl\(\s*(\d{0,3}[.]?[0-9]+(?:deg)?)\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*\)$/i,Pt=/^hsl(?:a)?\(\s*(\d{0,3}[.]?[0-9]+(?:deg)?)\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,|\/)\s*([-+]?\d*[.]?\d+[%]?)\s*\)$/i,Lt=function(e){return 7===e.length&&e[1]===e[2]&&e[3]===e[4]&&e[5]===e[6]?"#"+e[1]+e[3]+e[5]:e};function zt(e){var t=e.toString(16);return 1===t.length?"0"+t:t}var Ft,Ct=function e(t,n,r){return function(){var o=r.concat(Array.prototype.slice.call(arguments));return o.length>=n?t.apply(this,o):e(t,n,o)}}(Ft=function(e,t){if("transparent"===t)return t;var n,r=function(e){if("string"!=typeof e)throw new ht(3);var t=function(e){if("string"!=typeof e)return e;var t=e.toLowerCase();return vt[t]?"#"+vt[t]:e}(e);if(t.match(xt))return{red:parseInt(""+t[1]+t[2],16),green:parseInt(""+t[3]+t[4],16),blue:parseInt(""+t[5]+t[6],16)};if(t.match(yt)){var n=parseFloat((parseInt(""+t[7]+t[8],16)/255).toFixed(2));return{red:parseInt(""+t[1]+t[2],16),green:parseInt(""+t[3]+t[4],16),blue:parseInt(""+t[5]+t[6],16),alpha:n}}if(t.match(kt))return{red:parseInt(""+t[1]+t[1],16),green:parseInt(""+t[2]+t[2],16),blue:parseInt(""+t[3]+t[3],16)};if(t.match(wt)){var r=parseFloat((parseInt(""+t[4]+t[4],16)/255).toFixed(2));return{red:parseInt(""+t[1]+t[1],16),green:parseInt(""+t[2]+t[2],16),blue:parseInt(""+t[3]+t[3],16),alpha:r}}var o=It.exec(t);if(o)return{red:parseInt(""+o[1],10),green:parseInt(""+o[2],10),blue:parseInt(""+o[3],10)};var a=St.exec(t.substring(0,50));if(a)return{red:parseInt(""+a[1],10),green:parseInt(""+a[2],10),blue:parseInt(""+a[3],10),alpha:parseFloat(""+a[4])>1?parseFloat(""+a[4])/100:parseFloat(""+a[4])};var i=$t.exec(t);if(i){var s="rgb("+bt(parseInt(""+i[1],10),parseInt(""+i[2],10)/100,parseInt(""+i[3],10)/100)+")",l=It.exec(s);if(!l)throw new ht(4,t,s);return{red:parseInt(""+l[1],10),green:parseInt(""+l[2],10),blue:parseInt(""+l[3],10)}}var c=Pt.exec(t.substring(0,50));if(c){var d="rgb("+bt(parseInt(""+c[1],10),parseInt(""+c[2],10)/100,parseInt(""+c[3],10)/100)+")",p=It.exec(d);if(!p)throw new ht(4,t,d);return{red:parseInt(""+p[1],10),green:parseInt(""+p[2],10),blue:parseInt(""+p[3],10),alpha:parseFloat(""+c[4])>1?parseFloat(""+c[4])/100:parseFloat(""+c[4])}}throw new ht(5)}(t);return function(e){if("object"==typeof e)return e.alpha>=1?function(e,t,n){if("number"==typeof e&&"number"==typeof t&&"number"==typeof n)return Lt("#"+zt(e)+zt(t)+zt(n));if("object"==typeof e&&void 0===t&&void 0===n)return Lt("#"+zt(e.red)+zt(e.green)+zt(e.blue));throw new ht(6)}(e.red,e.green,e.blue):"rgba("+e.red+","+e.green+","+e.blue+","+e.alpha+")";throw new ht(7)}(st({},r,{alpha:(n=+(100*("number"==typeof r.alpha?r.alpha:1)-100*parseFloat(e)).toFixed(2)/100,Math.max(0,Math.min(1,n)))}))},Ft.length,[]);const Et=["testId","isInverse","type","dataSet","options"];let At;var jt;!function(e){e.area="area",e.areaStacked="areaStacked",e.bar="bar",e.barGrouped="barGrouped",e.barStacked="barStacked",e.boxplot="boxplot",e.bubble="bubble",e.bullet="bullet",e.donut="donut",e.gauge="gauge",e.histogram="histogram",e.line="line",e.lollipop="lollipop",e.meter="meter",e.pie="pie",e.radar="radar",e.scatter="scatter",e.combo="combo"}(jt||(jt={}));const Rt=C.div(At||(At=(e=>e)`
76
- .cds--data-table thead tr th {
77
- background: ${0} !important;
78
- }
79
- .cds--data-table td,
80
- .cds--data-table tbody th {
81
- color: ${0};
82
- }
83
- .cds--data-table tbody tr,
84
- .cds--data-table tbody tr td,
85
- .cds--data-table tbody tr th {
86
- color: ${0};
87
- }
88
- .cds--data-table tr {
89
- block-size: 2.5rem;
90
- }
91
-
92
- .cds--cc--tooltip .content-box .datapoint-tooltip p {
93
- font-size: ${0};
94
- padding: ${0};
95
- color: ${0};
96
- max-width: 142px;
97
- white-space: normal;
98
- }
99
-
100
- .cds--modal-container {
101
- clip-path: inset(0% 0% 0% 0% round ${0});
102
- background: ${0};
103
- .cds--data-table th {
104
- background: ${0};
105
- }
106
- .cds--data-table td {
107
- border-top: 1px solid
108
- ${0};
109
- border-bottom: 1px solid
110
- ${0};
111
- background: ${0};
112
- }
113
- .cds--data-table tr:hover td {
114
- background: ${0};
115
- }
116
- }
117
-
118
- p,
119
- div,
120
- text,
121
- .cds--cc--axes g.axis .axis-title,
122
- .cds--cc--title p.title,
123
- .cds--cc--axes g.axis g.tick text {
124
- font-family: ${0} !important;
125
- color: ${0};
126
- }
127
-
128
- .cds--cc--axes {
129
- overflow: visible;
130
- }
131
-
132
- div.cds--cc--legend {
133
- div.legend-item {
134
- div.checkbox {
135
- background: ${0};
136
- border: none;
137
- width: ${0};
138
- height: ${0};
139
- svg {
140
- left: 2px;
141
- position: relative;
142
- }
143
- }
144
- p {
145
- font-size: ${0};
146
- margin: 0 ${0} 0 0;
147
- }
148
- }
149
- }
150
- div.cds--cc--legend.has-deactivated-items {
151
- div.legend-item {
152
- div.checkbox {
153
- border: 1px solid
154
- ${0};
155
- }
156
- div.checkbox.active {
157
- border: 1px solid transparent;
158
- }
159
- }
160
- }
161
- .chart-holder {
162
- .cds--cc--axes g.axis g.tick text {
163
- fill: ${0};
164
- }
165
- .cds--cc--axes g.axis path.domain {
166
- stroke: ${0};
167
- }
168
- .cds--cc--grid g.x.grid g.tick line,
169
- .cds--cc--grid g.y.grid g.tick line {
170
- stroke: ${0};
171
- }
172
- .cds--cc--grid rect.chart-grid-backdrop.stroked {
173
- stroke: ${0};
174
- }
175
- .cds--cc--skeleton .shimmer-effect-lines {
176
- filter: ${0};
177
- }
178
- /* .chart-holder.cds--chart-holder.filled,
179
- .cds--cc--skeleton rect.chart-skeleton-backdrop,
180
- .cds--cc--grid rect.chart-grid-backdrop {
181
- } */
182
-
183
- .cds--cc--grid rect.chart-grid-backdrop {
184
- fill: transparent;
185
- }
186
- .cds--cc--scatter circle.dot.hovered {
187
- padding: 10px;
188
- }
189
- .cds--cc--scatter-stacked circle.dot.hovered,
190
- .cds--cc--scatter-stacked circle.dot.unfilled,
191
- .cds--cc--scatter circle.dot.unfilled {
192
- stroke-width: 6px;
193
- transition: 0.1s all linear;
194
- }
195
- .cds--cc--scatter circle.dot.hovered {
196
- stroke-width: 0.5em;
197
- transition: 0.1s all linear;
198
- filter: drop-shadow(
199
- 1px 0px 0px
200
- ${0}
201
- )
202
- drop-shadow(
203
- -1px 0px 0px
204
- ${0}
205
- )
206
- drop-shadow(
207
- 0px 1px 0px
208
- ${0}
209
- )
210
- drop-shadow(
211
- 0px -1px 0px
212
- ${0}
213
- );
214
- }
215
- .cds--cc--lollipop circle.dot.filled,
216
- .cds--cc--lollipop circle.dot.hovered {
217
- stroke-width: 15px;
218
- }
219
- .cds--cc--scatter-stacked circle.dot.hovered,
220
- .cds--cc--scatter-stacked circle.dot.unfilled,
221
- .cds--cc--scatter circle.dot.unfilled,
222
- .cds--cc--lollipop circle.dot.filled,
223
- .cds--cc--lollipop circle.dot.hovered {
224
- transition: 0.1s all linear;
225
- filter: drop-shadow(
226
- 1px 0px 0px
227
- ${0}
228
- )
229
- drop-shadow(
230
- -1px 0px 0px
231
- ${0}
232
- )
233
- drop-shadow(
234
- 0px 1px 0px
235
- ${0}
236
- )
237
- drop-shadow(
238
- 0px -1px 0px
239
- ${0}
240
- );
241
- }
242
- .cds--cc--lollipop .cds--cc--scatter circle.dot.hovered {
243
- transition: 0.1s all linear;
244
- stroke-width: 1.1em;
245
- }
246
-
247
- .cds--cc--tooltip {
248
- ${0}
249
-
250
- .cds--overflow-menu-options__btn:focus {
251
- outline-color: ${0};
252
- }
253
-
254
- .cds--btn {
255
- min-height: auto;
256
- display: flex;
257
- flex: 0 auto;
258
- align-items: center;
259
- text-align: center;
260
- padding: 20px;
261
- margin: 0;
262
- line-height: ${0};
263
- margin: 0;
264
- min-width: ${0};
265
- overflow: hidden;
266
- padding:;
267
- position: relative;
268
- right: ${0};
269
- text-align: center;
270
- height: 40px;
271
- font-family: ${0};
272
- font-size: ${0};
273
- border-radius: ${0};
274
- font-weight: 500;
275
- }
276
-
277
- .cds--btn--primary {
278
- background: ${0};
279
- color: ${0};
280
- }
281
-
282
- *:focus {
283
- outline: 2px solid
284
- ${0} !important;
285
- outline-offset: 0;
286
- }
287
- .cds--overflow-menu-options__btn:focus,
288
- .cds--overflow-menu:focus,
289
- .cds--overflow-menu__trigger:focus,
290
- .toolbar-control:focus {
291
- outline: 2px solid
292
- ${0} !important;
293
- }
294
- div.cds--cc--legend.clickable
295
- div.legend-item:not(.additional):focus
296
- div.checkbox,
297
- div.cds--cc--legend.clickable
298
- div.legend-item:not(.additional):hover
299
- div.checkbox {
300
- border: ${0};
301
- }
302
- div.cds--cc--legend.clickable
303
- div.legend-item:not(.additional):hover
304
- div.checkbox {
305
- box-shadow: 0 0 0 2px
306
- ${0} !important;
307
- }
308
-
309
- .cds--btn--primary {
310
- &:focus {
311
- outline: 2px solid
312
- ${0};
313
- }
314
- outline-offset: 2px;
315
- border: none;
316
- box-shadow: none;
317
- }
318
- .cds--modal-header {
319
- background: ${0};
320
- margin-bottom: 0;
321
- border-bottom: 1px solid
322
- ${0};
323
- }
324
- .cds--modal-header__heading {
325
- font-weight: 600;
326
- }
327
-
328
- .cds--modal-close {
329
- position: absolute;
330
- top: 0;
331
- right: 0;
332
- &:focus {
333
- outline: 2px solid
334
- ${0};
335
- border-color: none;
336
- }
337
- outline-offset: 0;
338
- border: none;
339
- }
340
- }
341
-
342
- .cds--modal-footer.cds--modal-footer {
343
- display: flex;
344
- align-items: center;
345
- border-top: 1px solid
346
- ${0};
347
- background: ${0} !important;
348
- }
349
- .layout-child.header {
350
- height: auto !important;
351
- p {
352
- text-overflow: inherit;
353
- overflow: auto;
354
- white-space: normal;
355
- }
356
- }
357
-
358
- svg:not(:root) {
359
- overflow: visible;
360
- }
361
-
362
- .cds--cc--chart-wrapper text {
363
- font-size: ${0};
364
- }
365
-
366
- g.center text,
367
- .pie-label {
368
- fill: ${0};
369
- }
370
-
371
- // Zoom responsive tweaks
372
-
373
- @media screen and (max-width: 760px) {
374
- .cds--modal-container {
375
- overflow-y: auto;
376
- }
377
- .cds--chart-holder .cds--modal .cds--modal-container .cds--modal-content {
378
- overflow: visible;
379
- }
380
- .cds--chart-holder
381
- .cds--modal
382
- .cds--modal-container
383
- .cds--modal-content
384
- table
385
- th {
386
- position: relative;
387
- }
388
- }
389
- `),e=>e.isInverse?e.theme.colors.primary700:"",e=>e.theme.colors.neutral700,e=>e.isInverse?e.theme.colors.neutral100:"",e=>e.theme.typeScale.size02.fontSize,e=>e.theme.spaceScale.spacing02,e=>e.isInverse?e.theme.colors.neutral100:e.theme.colors.neutral700,e=>e.theme.borderRadius,e=>e.isInverse?e.theme.colors.primary700:"",e=>e.isInverse?e.theme.colors.primary600:"",e=>e.isInverse?Ct(.8,e.theme.colors.neutral100):"inherit",e=>e.isInverse?Ct(.8,e.theme.colors.neutral100):"inherit",e=>e.isInverse?"#202565":"",e=>e.isInverse?e.theme.colors.primary600:"",e=>e.theme.bodyFont,e=>e.isInverse?e.theme.colors.neutral100:e.theme.colors.neutral700,e=>e.isInverse?e.theme.colors.neutral900:e.theme.colors.neutral100,e=>e.theme.spaceScale.spacing05,e=>e.theme.spaceScale.spacing05,e=>e.theme.typeScale.size03.fontSize,e=>e.theme.spaceScale.spacing03,e=>e.isInverse?e.theme.colors.neutral100:e.theme.colors.neutral900,e=>e.isInverse?e.theme.colors.neutral100:"",e=>e.isInverse?e.theme.colors.neutral100:"",e=>e.isInverse?Ct(.5,e.theme.colors.neutral100):"",e=>e.isInverse?e.theme.colors.neutral100:"",e=>e.isInverse?"invert(1)":"",e=>e.isInverse?e.theme.colors.primary600:e.theme.colors.neutral100,e=>e.isInverse?e.theme.colors.primary600:e.theme.colors.neutral100,e=>e.isInverse?e.theme.colors.primary600:e.theme.colors.neutral100,e=>e.isInverse?e.theme.colors.primary600:e.theme.colors.neutral100,e=>e.isInverse?e.theme.colors.primary600:e.theme.colors.neutral100,e=>e.isInverse?e.theme.colors.primary600:e.theme.colors.neutral100,e=>e.isInverse?e.theme.colors.primary600:e.theme.colors.neutral100,e=>e.isInverse?e.theme.colors.primary600:e.theme.colors.neutral100,e=>((e.isInverse?e.theme.chartColorsInverse:e.theme.chartColors)||[]).reduce((t,n,r)=>t+`.tooltip-${e.groupsLength}-1-${r+1} { background-color: ${n}; }`,""),e=>e.isInverse?e.theme.colors.focusInverse:"",e=>e.theme.typeScale.size03.lineHeight,e=>e.theme.spaceScale.spacing13,e=>e.theme.spaceScale.spacing04,e=>e.theme.bodyFont,e=>e.theme.typeScale.size03.fontSize,e=>e.theme.borderRadius,e=>e.isInverse?e.theme.colors.tertiary500:e.theme.colors.primary,e=>e.isInverse?e.theme.colors.neutral900:"",e=>e.isInverse?e.theme.colors.focusInverse:e.theme.colors.focus,e=>e.isInverse?e.theme.colors.focusInverse:e.theme.colors.focus,e=>e.isInverse?`1px solid ${e.theme.colors.focusInverse}`:"",e=>e.isInverse?e.theme.colors.focusInverse:e.theme.colors.focus,e=>e.isInverse?e.theme.colors.focusInverse:e.theme.colors.focus,e=>e.isInverse?e.theme.colors.primary600:e.theme.colors.neutral100,e=>e.isInverse?Ct(.8,e.theme.colors.neutral100):e.theme.colors.neutral300,e=>e.isInverse?e.theme.colors.focusInverse:e.theme.colors.focus,e=>e.isInverse?Ct(.8,e.theme.colors.neutral100):e.theme.colors.neutral300,e=>e.isInverse?e.theme.colors.primary600:e.theme.colors.neutral100,e=>e.theme.typeScale.size02.fontSize,e=>e.isInverse?e.theme.colors.neutral100:"");var Ot;!function(e){e.WHITE="white",e.G100="g100",e.G90="g90",e.G10="g10"}(Ot||(Ot={}));const Wt=/*#__PURE__*/e.forwardRef((t,n)=>{const{testId:r,isInverse:o,type:a,dataSet:i,options:l}=t,c=oe(t,Et),d=e.useContext(s),p=$(o),u={area:H,areaStacked:q,bar:_,barGrouped:M,barStacked:G,donut:B,line:K,lollipop:V,pie:Y,radar:N,boxplot:U,bubble:X,bullet:Z,gauge:J,histogram:Q,meter:ee,scatter:te,combo:ne};function f(){const e={},t=i.map(e=>"group"in e?e.group:null),n=t.filter((e,n)=>t.indexOf(e)===n),r=l.colors||[],o=[...r,...d.chartColors],a=[...r,...d.chartColorsInverse];return n.forEach((t,r)=>n.length<=o.length?e[t||"null"]=p?a[r]:o[r]:{}),e}const h=re({},l,{theme:p?Ot.G100:Ot.WHITE,color:{scale:f()},tooltip:re({},(null==l?void 0:l.tooltip)||{},{truncation:{type:"none"}})}),m=u[a];e.useEffect(()=>{document.querySelectorAll(".graph-frame ").forEach(e=>{e.setAttribute("aria-label","Interactive chart")})});const g=Object.keys(f()).length;/*#__PURE__*/return L(Rt,re({"data-testid":r,ref:n,isInverse:p,theme:d,className:"carbon-chart-wrapper",groupsLength:g<6?g:14},c,{children:/*#__PURE__*/L(m,{data:i,options:h})}))});export{Wt as CarbonChart,jt as CarbonChartType,it as Chart};
390
- //# sourceMappingURL=charts.map