@sproutsocial/seeds-react-data-viz 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/esm/index.css +1006 -0
- package/dist/esm/index.css.map +1 -0
- package/dist/esm/index.js +2879 -425
- package/dist/esm/index.js.map +1 -1
- package/dist/index.css +1006 -0
- package/dist/index.css.map +1 -0
- package/dist/index.d.mts +196 -48
- package/dist/index.d.ts +196 -48
- package/dist/index.js +2843 -401
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../node_modules/highcharts/css/highcharts.css","../src/styles/_HighchartsDefaults.css"],"sourcesContent":["/**\n * @license Highcharts\n *\n * (c) 2009-2022 Torstein Honsi\n *\n * License: www.highcharts.com/license\n */\n\n:root,\n.highcharts-light {\n /* Colors for data series and points */\n --highcharts-color-0: #2caffe;\n --highcharts-color-1: #544fc5;\n --highcharts-color-2: #00e272;\n --highcharts-color-3: #fe6a35;\n --highcharts-color-4: #6b8abc;\n --highcharts-color-5: #d568fb;\n --highcharts-color-6: #2ee0ca;\n --highcharts-color-7: #fa4b42;\n --highcharts-color-8: #feb56a;\n --highcharts-color-9: #91e8e1;\n\n /* Chart background, point stroke for markers and columns etc */\n --highcharts-background-color: #ffffff;\n\n /*\n Neutral colors, grayscale by default. The default colors are defined by\n mixing the background-color with neutral, with a weight corresponding to\n the number in the name.\n\n https://www.highcharts.com/samples/highcharts/css/palette-helper\n */\n\n /* Strong text. */\n --highcharts-neutral-color-100: #000000;\n\n /* Main text, axis labels and some strokes. */\n --highcharts-neutral-color-80: #333333;\n\n /* Axis title, connector fallback. */\n --highcharts-neutral-color-60: #666666;\n\n /* Credits text, export menu stroke. */\n --highcharts-neutral-color-40: #999999;\n\n /* Disabled texts, button strokes, crosshair etc. */\n --highcharts-neutral-color-20: #cccccc;\n\n /* Grid lines etc. */\n --highcharts-neutral-color-10: #e6e6e6;\n\n /* Minor grid lines etc. */\n --highcharts-neutral-color-5: #f2f2f2;\n\n /* Tooltip backgroud, button fills, map null points. */\n --highcharts-neutral-color-3: #f7f7f7;\n\n /*\n Highlights, shades of blue by default\n */\n\n /* Drilldown clickable labels, color axis max color. */\n --highcharts-highlight-color-100: #0022ff;\n\n /* Selection marker, menu hover, button hover, chart border, navigator\n series. */\n --highcharts-highlight-color-80: #334eff;\n\n /* Navigator mask fill. */\n --highcharts-highlight-color-60: #667aff;\n\n /* Ticks and axis line. */\n --highcharts-highlight-color-20: #ccd3ff;\n\n /* Pressed button, color axis min color. */\n --highcharts-highlight-color-10: #e6e9ff;\n\n /* Indicators */\n --highcharts-positive-color: #06b535;\n --highcharts-negative-color: #f21313;\n\n /* Transparent colors for annotations */\n --highcharts-annotation-color-0: rgba(130, 170, 255, 0.4);\n --highcharts-annotation-color-1: rgba(139, 191, 216, 0.4);\n --highcharts-annotation-color-2: rgba(150, 216, 192, 0.4);\n --highcharts-annotation-color-3: rgba(156, 229, 161, 0.4);\n --highcharts-annotation-color-4: rgba(162, 241, 130, 0.4);\n --highcharts-annotation-color-5: rgba(169, 255, 101, 0.4);\n}\n\n@media (prefers-color-scheme: dark) {\n :root {\n /* UI colors */\n --highcharts-background-color: rgb(48, 48, 48);\n\n /*\n Neutral color variations\n https://www.highcharts.com/samples/highcharts/css/palette-helper\n */\n --highcharts-neutral-color-100: rgb(255, 255, 255);\n --highcharts-neutral-color-80: rgb(214, 214, 214);\n --highcharts-neutral-color-60: rgb(173, 173, 173);\n --highcharts-neutral-color-40: rgb(133, 133, 133);\n --highcharts-neutral-color-20: rgb(92, 92, 92);\n --highcharts-neutral-color-10: rgb(71, 71, 71);\n --highcharts-neutral-color-5: rgb(61, 61, 61);\n --highcharts-neutral-color-3: rgb(57, 57, 57);\n\n /* Highlight color variations */\n --highcharts-highlight-color-100: rgb(122, 167, 255);\n --highcharts-highlight-color-80: rgb(108, 144, 214);\n --highcharts-highlight-color-60: rgb(94, 121, 173);\n --highcharts-highlight-color-20: rgb(65, 74, 92);\n --highcharts-highlight-color-10: rgb(58, 63, 71);\n }\n}\n\n.highcharts-dark {\n /* UI colors */\n --highcharts-background-color: rgb(48, 48, 48);\n\n /* Neutral color variations */\n --highcharts-neutral-color-100: rgb(255, 255, 255);\n --highcharts-neutral-color-80: rgb(214, 214, 214);\n --highcharts-neutral-color-60: rgb(173, 173, 173);\n --highcharts-neutral-color-40: rgb(133, 133, 133);\n --highcharts-neutral-color-20: rgb(92, 92, 92);\n --highcharts-neutral-color-10: rgb(71, 71, 71);\n --highcharts-neutral-color-5: rgb(61, 61, 61);\n --highcharts-neutral-color-3: rgb(57, 57, 57);\n\n /* Highlight color variations */\n --highcharts-highlight-color-100: rgb(122, 167, 255);\n --highcharts-highlight-color-80: rgb(108, 144, 214);\n --highcharts-highlight-color-60: rgb(94, 121, 173);\n --highcharts-highlight-color-20: rgb(65, 74, 92);\n --highcharts-highlight-color-10: rgb(58, 63, 71);\n}\n\n.highcharts-container {\n position: relative;\n overflow: hidden;\n width: 100%;\n height: 100%;\n text-align: left;\n line-height: normal;\n z-index: 0; /* #1072 */\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n font-family: Helvetica, Arial, sans-serif;\n font-size: 1rem;\n user-select: none;\n touch-action: manipulation;\n outline: none;\n}\n\n.highcharts-no-touch-action {\n touch-action: none;\n}\n\n.highcharts-root {\n display: block;\n}\n\n.highcharts-root text {\n stroke-width: 0;\n}\n\n.highcharts-strong {\n font-weight: bold;\n}\n\n.highcharts-emphasized {\n font-style: italic;\n}\n\n.highcharts-anchor {\n cursor: pointer;\n}\n\n.highcharts-background {\n fill: var(--highcharts-background-color);\n}\n\n.highcharts-plot-border,\n.highcharts-plot-background {\n fill: none;\n}\n\n.highcharts-label-box {\n fill: none;\n}\n\n.highcharts-label text {\n fill: var(--highcharts-neutral-color-80);\n font-size: 0.8em;\n}\n\n.highcharts-button-box {\n fill: inherit;\n}\n\n.highcharts-tracker-line {\n stroke-linejoin: round;\n stroke: rgba(192, 192, 192, 0.0001);\n stroke-width: 22;\n fill: none;\n}\n\n.highcharts-tracker-area {\n fill: rgba(192, 192, 192, 0.0001);\n stroke-width: 0;\n}\n\n/* Titles */\n.highcharts-title {\n fill: var(--highcharts-neutral-color-80);\n font-size: 1.2em;\n font-weight: bold;\n}\n\n.highcharts-subtitle {\n fill: var(--highcharts-neutral-color-60);\n font-size: 0.8em;\n}\n\n/* Axes */\n.highcharts-axis-line {\n fill: none;\n stroke: var(--highcharts-neutral-color-80);\n}\n\n.highcharts-yaxis .highcharts-axis-line {\n stroke-width: 0;\n}\n\n.highcharts-axis-title {\n fill: var(--highcharts-neutral-color-60);\n font-size: 0.8em;\n}\n\n.highcharts-axis-labels {\n fill: var(--highcharts-neutral-color-80);\n cursor: default;\n font-size: 0.8em;\n}\n\n.highcharts-grid-line {\n fill: none;\n stroke: var(--highcharts-neutral-color-10);\n}\n\n.highcharts-xaxis-grid .highcharts-grid-line {\n stroke-width: 0;\n}\n\n.highcharts-tick {\n stroke: var(--highcharts-neutral-color-80);\n}\n\n.highcharts-yaxis .highcharts-tick {\n stroke-width: 0;\n}\n\n.highcharts-minor-grid-line {\n stroke: var(--highcharts-neutral-color-5);\n}\n\n.highcharts-crosshair-thin {\n stroke-width: 1px;\n stroke: var(--highcharts-neutral-color-20);\n}\n\n.highcharts-crosshair-category {\n stroke: var(--highcharts-highlight-color-20);\n stroke-opacity: 0.25;\n}\n\n/* Credits */\n.highcharts-credits {\n cursor: pointer;\n fill: var(--highcharts-neutral-color-40);\n font-size: 0.6em;\n transition: fill 250ms, font-size 250ms;\n}\n\n.highcharts-credits:hover {\n fill: var(--highcharts-neutral-color-100);\n font-size: 0.7em;\n}\n\n/* Tooltip */\n.highcharts-tooltip {\n cursor: default;\n pointer-events: none;\n white-space: nowrap;\n transition: stroke 150ms;\n}\n\n.highcharts-tooltip .highcharts-tracker {\n fill: none;\n stroke: none;\n}\n\n.highcharts-tooltip text {\n fill: var(--highcharts-neutral-color-80);\n font-size: 0.8em;\n}\n\n.highcharts-tooltip .highcharts-header {\n font-size: 0.8em;\n}\n\n.highcharts-tooltip-box {\n stroke-width: 1px;\n fill: var(--highcharts-background-color);\n}\n\n.highcharts-tooltip-box {\n stroke-width: 0;\n fill: var(--highcharts-background-color);\n}\n\n.highcharts-tooltip-box .highcharts-label-box {\n fill: var(--highcharts-background-color);\n}\n\ndiv.highcharts-tooltip {\n filter: none;\n font-size: 0.8em;\n}\n\n.highcharts-selection-marker {\n fill: var(--highcharts-highlight-color-80);\n fill-opacity: 0.25;\n}\n\n.highcharts-graph {\n fill: none;\n stroke-width: 2px;\n stroke-linecap: round;\n stroke-linejoin: round;\n}\n\n.highcharts-empty-series {\n stroke-width: 1px;\n fill: none;\n stroke: var(--highcharts-neutral-color-20);\n}\n\n.highcharts-state-hover .highcharts-graph {\n stroke-width: 3;\n}\n\n.highcharts-point-inactive {\n opacity: 0.2;\n transition: opacity 50ms; /* quick in */\n}\n\n.highcharts-series-inactive {\n opacity: 0.2;\n transition: opacity 50ms; /* quick in */\n}\n\n.highcharts-state-hover path {\n transition: stroke-width 50ms; /* quick in */\n}\n\n.highcharts-state-normal path {\n transition: stroke-width 250ms; /* slow out */\n}\n\n/* Legend hover affects points and series */\ng.highcharts-series,\n.highcharts-point,\n.highcharts-markers,\n.highcharts-data-labels {\n transition: opacity 250ms;\n}\n\n.highcharts-legend-series-active g.highcharts-series:not(.highcharts-series-hover),\n.highcharts-legend-point-active .highcharts-point:not(.highcharts-point-hover, .highcharts-point-select),\n.highcharts-legend-series-active .highcharts-markers:not(.highcharts-series-hover),\n.highcharts-legend-series-active .highcharts-data-labels:not(.highcharts-series-hover) {\n opacity: 0.2;\n}\n\n/* Series options */\n\n/* Default colors */\n.highcharts-color-0 {\n fill: var(--highcharts-color-0);\n stroke: var(--highcharts-color-0);\n}\n\n.highcharts-color-1 {\n fill: var(--highcharts-color-1);\n stroke: var(--highcharts-color-1);\n}\n\n.highcharts-color-2 {\n fill: var(--highcharts-color-2);\n stroke: var(--highcharts-color-2);\n}\n\n.highcharts-color-3 {\n fill: var(--highcharts-color-3);\n stroke: var(--highcharts-color-3);\n}\n\n.highcharts-color-4 {\n fill: var(--highcharts-color-4);\n stroke: var(--highcharts-color-4);\n}\n\n.highcharts-color-5 {\n fill: var(--highcharts-color-5);\n stroke: var(--highcharts-color-5);\n}\n\n.highcharts-color-6 {\n fill: var(--highcharts-color-6);\n stroke: var(--highcharts-color-6);\n}\n\n.highcharts-color-7 {\n fill: var(--highcharts-color-7);\n stroke: var(--highcharts-color-7);\n}\n\n.highcharts-color-8 {\n fill: var(--highcharts-color-8);\n stroke: var(--highcharts-color-8);\n}\n\n.highcharts-color-9 {\n fill: var(--highcharts-color-9);\n stroke: var(--highcharts-color-9);\n}\n\n/* Various series-specific */\n.highcharts-area {\n fill-opacity: 0.75;\n stroke-width: 0;\n}\n\n.highcharts-markers {\n stroke-width: 1px;\n stroke: var(--highcharts-background-color);\n}\n\n.highcharts-a11y-markers-hidden .highcharts-point:not(.highcharts-point-hover, .highcharts-a11y-marker-visible),\n.highcharts-a11y-marker-hidden {\n opacity: 0;\n}\n\n.highcharts-point {\n stroke-width: 1px;\n}\n\n.highcharts-dense-data .highcharts-point {\n stroke-width: 0;\n}\n\n.highcharts-data-label text,\ntext.highcharts-data-label {\n font-size: 0.7em;\n font-weight: bold;\n}\n\n.highcharts-data-label-box {\n fill: none;\n stroke-width: 0;\n}\n\n.highcharts-data-label text,\ntext.highcharts-data-label {\n fill: var(--highcharts-neutral-color-80);\n}\n\n.highcharts-data-label-connector {\n fill: none;\n}\n\n.highcharts-data-label-hidden {\n pointer-events: none;\n}\n\n.highcharts-halo {\n fill-opacity: 0.25;\n stroke-width: 0;\n}\n\n.highcharts-series-label text {\n fill: inherit;\n font-weight: bold;\n}\n\n.highcharts-series:not(.highcharts-pie-series) .highcharts-point-select,\n.highcharts-markers .highcharts-point-select {\n fill: var(--highcharts-neutral-color-20);\n stroke: var(--highcharts-neutral-color-100);\n}\n\n.highcharts-column-series path.highcharts-point,\n.highcharts-bar-series path.highcharts-point {\n /* path to prevent stroke on 3D columns and bars */\n stroke: var(--highcharts-background-color);\n}\n\n.highcharts-column-series .highcharts-point {\n transition: fill-opacity 250ms;\n}\n\n.highcharts-column-series .highcharts-point-hover {\n fill-opacity: 0.75;\n transition: fill-opacity 50ms;\n}\n\n.highcharts-pie-series .highcharts-point {\n stroke-linejoin: round;\n stroke: var(--highcharts-background-color);\n}\n\n.highcharts-pie-series .highcharts-point-hover {\n fill-opacity: 0.75;\n transition: fill-opacity 50ms;\n}\n\n.highcharts-funnel-series .highcharts-point {\n stroke-linejoin: round;\n stroke: var(--highcharts-background-color);\n}\n\n.highcharts-funnel-series .highcharts-point-hover {\n fill-opacity: 0.75;\n transition: fill-opacity 50ms;\n}\n\n.highcharts-funnel-series .highcharts-point-select {\n fill: inherit;\n stroke: inherit;\n}\n\n.highcharts-pyramid-series .highcharts-point {\n stroke-linejoin: round;\n stroke: var(--highcharts-background-color);\n}\n\n.highcharts-pyramid-series .highcharts-point-hover {\n fill-opacity: 0.75;\n transition: fill-opacity 50ms;\n}\n\n.highcharts-pyramid-series .highcharts-point-select {\n fill: inherit;\n stroke: inherit;\n}\n\n.highcharts-solidgauge-series .highcharts-point {\n stroke-width: 0;\n}\n\n.highcharts-treemap-series .highcharts-point {\n stroke-width: 1px;\n stroke: var(--highcharts-neutral-color-10);\n transition: stroke 250ms, fill 250ms, fill-opacity 250ms;\n}\n\n.highcharts-treemap-series .highcharts-point-hover {\n stroke: var(--highcharts-neutral-color-40);\n transition: stroke 25ms, fill 25ms, fill-opacity 25ms;\n}\n\n.highcharts-treemap-series .highcharts-above-level {\n display: none;\n}\n\n.highcharts-treemap-series .highcharts-internal-node {\n fill: none;\n}\n\n.highcharts-treemap-series .highcharts-internal-node-interactive {\n fill-opacity: 0.15;\n cursor: pointer;\n}\n\n.highcharts-treemap-series .highcharts-internal-node-interactive:hover {\n fill-opacity: 0.75;\n}\n\n.highcharts-vector-series .highcharts-point {\n fill: none;\n stroke-width: 2px;\n}\n\n.highcharts-windbarb-series .highcharts-point {\n fill: none;\n stroke-width: 2px;\n}\n\n.highcharts-lollipop-stem {\n stroke: var(--highcharts-neutral-color-100);\n}\n\n.highcharts-focus-border {\n fill: none;\n stroke-width: 2px;\n}\n\n.highcharts-legend-item-hidden .highcharts-focus-border {\n fill: none !important;\n}\n\n/* Legend */\n.highcharts-legend-box {\n fill: none;\n stroke-width: 0;\n}\n\n.highcharts-legend-item > text {\n fill: var(--highcharts-neutral-color-80);\n font-weight: bold;\n font-size: 0.8em;\n cursor: pointer;\n stroke-width: 0;\n}\n\n.highcharts-legend-item:hover text {\n fill: var(--highcharts-neutral-color-100);\n}\n\n.highcharts-legend-item-hidden * {\n fill: var(--highcharts-neutral-color-60) !important;\n stroke: var(--highcharts-neutral-color-60) !important;\n transition: fill 250ms;\n text-decoration: line-through;\n}\n\n.highcharts-legend-nav-active {\n fill: var(--highcharts-highlight-color-100);\n cursor: pointer;\n}\n\n.highcharts-legend-nav-inactive {\n fill: var(--highcharts-neutral-color-20);\n}\n\ncircle.highcharts-legend-nav-active,\ncircle.highcharts-legend-nav-inactive { /* tracker */\n fill: rgba(192, 192, 192, 0.0001);\n}\n\n.highcharts-legend-title-box {\n fill: none;\n stroke-width: 0;\n}\n\n/* Bubble legend */\n.highcharts-bubble-legend-symbol {\n stroke-width: 2;\n fill-opacity: 0.5;\n}\n\n.highcharts-bubble-legend-connectors {\n stroke-width: 1;\n}\n\n.highcharts-bubble-legend-labels {\n fill: var(--highcharts-neutral-color-80);\n font-size: 0.7em;\n}\n\n/* Loading */\n.highcharts-loading {\n position: absolute;\n background-color: var(--highcharts-background-color);\n opacity: 0.5;\n text-align: center;\n z-index: 10;\n transition: opacity 250ms;\n}\n\n.highcharts-loading-hidden {\n height: 0 !important;\n opacity: 0;\n overflow: hidden;\n transition: opacity 250ms, height 250ms step-end;\n}\n\n.highcharts-loading-inner {\n font-weight: bold;\n position: relative;\n top: 45%;\n}\n\n/* Plot bands and polar pane backgrounds */\n.highcharts-plot-band,\n.highcharts-pane {\n fill: var(--highcharts-neutral-color-100);\n fill-opacity: 0.05;\n}\n\n.highcharts-plot-line {\n fill: none;\n stroke: var(--highcharts-neutral-color-40);\n stroke-width: 1px;\n}\n\n.highcharts-plot-line-label {\n font-size: 0.8em;\n}\n\n/* Highcharts More and modules */\n.highcharts-boxplot-box {\n fill: var(--highcharts-background-color);\n}\n\n.highcharts-boxplot-median {\n stroke-width: 2px;\n}\n\n.highcharts-bubble-series .highcharts-point {\n fill-opacity: 0.5;\n}\n\n.highcharts-errorbar-series .highcharts-point {\n stroke: var(--highcharts-neutral-color-100);\n}\n\n.highcharts-gauge-series .highcharts-data-label-box {\n stroke: var(--highcharts-neutral-color-20);\n stroke-width: 1px;\n}\n\n.highcharts-gauge-series .highcharts-dial {\n fill: var(--highcharts-neutral-color-100);\n stroke-width: 0;\n}\n\n.highcharts-polygon-series .highcharts-graph {\n fill: inherit;\n stroke-width: 0;\n}\n\n.highcharts-waterfall-series .highcharts-graph {\n stroke: var(--highcharts-neutral-color-80);\n stroke-dasharray: 1, 3;\n}\n\n.highcharts-sankey-series .highcharts-point {\n stroke-width: 0;\n}\n\n.highcharts-sankey-series .highcharts-link {\n transition: fill 250ms, fill-opacity 250ms;\n fill-opacity: 0.5;\n}\n\n.highcharts-sankey-series .highcharts-point-hover.highcharts-link {\n transition: fill 50ms, fill-opacity 50ms;\n fill-opacity: 1;\n}\n\n.highcharts-venn-series .highcharts-point {\n fill-opacity: 0.75;\n stroke: var(--highcharts-neutral-color-20);\n transition: stroke 250ms, fill-opacity 250ms;\n}\n\n.highcharts-venn-series .highcharts-point-hover {\n fill-opacity: 1;\n stroke: var(--highcharts-neutral-color-20);\n}\n\n.highcharts-timeline-series .highcharts-graph {\n stroke: var(--highcharts-neutral-color-20);\n}\n\n/* Highstock */\n.highcharts-navigator-mask-outside {\n fill-opacity: 0;\n}\n\n.highcharts-navigator-mask-inside {\n fill: var(--highcharts-highlight-color-60); /* navigator.maskFill option */\n fill-opacity: 0.25;\n cursor: ew-resize;\n}\n\n.highcharts-navigator-outline {\n stroke: var(--highcharts-neutral-color-40);\n fill: none;\n}\n\n.highcharts-navigator-handle {\n stroke: var(--highcharts-neutral-color-40);\n fill: var(--highcharts-neutral-color-5);\n cursor: ew-resize;\n}\n\n.highcharts-navigator-series {\n fill: var(--highcharts-highlight-color-80);\n stroke: var(--highcharts-highlight-color-80);\n}\n\n.highcharts-navigator-series .highcharts-graph {\n stroke-width: 1px;\n}\n\n.highcharts-navigator-series .highcharts-area {\n fill-opacity: 0.05;\n}\n\n.highcharts-navigator-xaxis .highcharts-axis-line {\n stroke-width: 0;\n}\n\n.highcharts-navigator-xaxis .highcharts-grid-line {\n stroke-width: 1px;\n stroke: var(--highcharts-neutral-color-10);\n}\n\n.highcharts-navigator-xaxis.highcharts-axis-labels {\n fill: var(--highcharts-neutral-color-100);\n font-size: 0.7em;\n opacity: 0.6;\n}\n\n.highcharts-navigator-yaxis .highcharts-grid-line {\n stroke-width: 0;\n}\n\n.highcharts-scrollbar-thumb {\n fill: var(--highcharts-neutral-color-20);\n stroke: var(--highcharts-neutral-color-20);\n stroke-width: 0;\n}\n\n.highcharts-scrollbar-button {\n fill: var(--highcharts-neutral-color-10);\n stroke: var(--highcharts-neutral-color-20);\n stroke-width: 1px;\n}\n\n.highcharts-scrollbar-arrow {\n fill: var(--highcharts-neutral-color-60);\n}\n\n.highcharts-scrollbar-rifles {\n stroke: none;\n stroke-width: 1px;\n}\n\n.highcharts-scrollbar-track {\n fill: rgba(255, 255, 255, 0.001);\n stroke: var(--highcharts-neutral-color-20);\n stroke-width: 1px;\n}\n\n.highcharts-button {\n fill: var(--highcharts-neutral-color-3);\n stroke: var(--highcharts-neutral-color-20);\n cursor: default;\n stroke-width: 1px;\n transition: fill 250ms;\n}\n\n.highcharts-button text {\n fill: var(--highcharts-neutral-color-80);\n font-size: 0.8em;\n}\n\n.highcharts-button-hover {\n transition: fill 0ms;\n fill: var(--highcharts-neutral-color-10);\n stroke: var(--highcharts-neutral-color-20);\n}\n\n.highcharts-button-hover text {\n fill: var(--highcharts-neutral-color-80);\n}\n\n.highcharts-button-pressed {\n font-weight: bold;\n fill: var(--highcharts-highlight-color-10);\n stroke: var(--highcharts-neutral-color-20);\n}\n\n.highcharts-button-pressed text {\n fill: var(--highcharts-neutral-color-80);\n font-weight: bold;\n}\n\n.highcharts-button-disabled text {\n fill: var(--highcharts-neutral-color-80);\n}\n\n.highcharts-range-selector-buttons .highcharts-button {\n stroke-width: 0;\n}\n\n.highcharts-range-label rect {\n fill: none;\n}\n\n.highcharts-range-label text {\n fill: var(--highcharts-neutral-color-60);\n}\n\n.highcharts-range-input rect {\n fill: none;\n}\n\n.highcharts-range-input text {\n fill: var(--highcharts-neutral-color-80);\n font-size: 0.8em;\n}\n\n.highcharts-range-input {\n stroke-width: 1px;\n stroke: var(--highcharts-neutral-color-20);\n}\n\ninput.highcharts-range-selector {\n position: absolute;\n border: 0;\n width: 1px; /* Chrome needs a pixel to see it */\n height: 1px;\n padding: 0;\n text-align: center;\n left: -9em; /* #4798 */\n}\n\n.highcharts-crosshair-label text {\n fill: var(--highcharts-background-color);\n font-size: 1.7em;\n}\n\n.highcharts-crosshair-label .highcharts-label-box {\n fill: inherit;\n}\n\n.highcharts-candlestick-series .highcharts-point {\n stroke: var(--highcharts-neutral-color-100);\n stroke-width: 1px;\n}\n\n.highcharts-candlestick-series .highcharts-point-up {\n fill: var(--highcharts-background-color);\n}\n\n.highcharts-hollowcandlestick-series .highcharts-point-down {\n fill: var(--highcharts-negative-color);\n stroke: var(--highcharts-negative-color);\n}\n\n.highcharts-hollowcandlestick-series .highcharts-point-down-bearish-up {\n fill: var(--highcharts-positive-color);\n stroke: var(--highcharts-positive-color);\n}\n\n.highcharts-hollowcandlestick-series .highcharts-point-up {\n fill: transparent;\n stroke: var(--highcharts-positive-color);\n}\n\n.highcharts-ohlc-series .highcharts-point-hover {\n stroke-width: 3px;\n}\n\n.highcharts-flags-series .highcharts-point .highcharts-label-box {\n stroke: var(--highcharts-neutral-color-40);\n fill: var(--highcharts-background-color);\n transition: fill 250ms;\n}\n\n.highcharts-flags-series .highcharts-point-hover .highcharts-label-box {\n stroke: var(--highcharts-neutral-color-100);\n fill: var(--highcharts-highlight-color-20);\n}\n\n.highcharts-flags-series .highcharts-point text {\n fill: var(--highcharts-neutral-color-100);\n font-size: 0.9em;\n font-weight: bold;\n}\n\n/* Highcharts Maps */\n.highcharts-map-series .highcharts-point {\n transition: fill 500ms, fill-opacity 500ms, stroke-width 250ms;\n stroke: var(--highcharts-neutral-color-20);\n stroke-width: inherit;\n}\n\n.highcharts-map-series .highcharts-point-hover {\n transition: fill 0ms, fill-opacity 0ms;\n fill-opacity: 0.5;\n}\n\n.highcharts-mapline-series .highcharts-point {\n fill: none;\n}\n\n.highcharts-heatmap-series .highcharts-point {\n stroke-width: 0;\n}\n\n.highcharts-map-navigation {\n font-size: 1.3em;\n font-weight: bold;\n text-align: center;\n}\n\n.highcharts-map-navigation.highcharts-button {\n fill: var(--highcharts-background-color);\n stroke: var(--highcharts-neutral-color-10);\n}\n\n.highcharts-map-navigation.highcharts-button:hover {\n fill: var(--highcharts-neutral-color-10);\n}\n\n.highcharts-map-navigation.highcharts-button .highcharts-button-symbol {\n stroke-width: 2px;\n}\n\n.highcharts-mapview-inset-border {\n stroke: var(--highcharts-neutral-color-20);\n stroke-width: 1px;\n fill: none;\n}\n\n.highcharts-coloraxis {\n stroke-width: 0;\n}\n\n.highcharts-coloraxis-marker {\n fill: var(--highcharts-neutral-color-40);\n}\n\n.highcharts-null-point {\n fill: var(--highcharts-neutral-color-3);\n}\n\n/* 3d charts */\n.highcharts-3d-frame {\n fill: transparent;\n}\n\n/* Exporting module */\n.highcharts-contextbutton {\n /* Fill is needed to capture hover */\n fill: var(--highcharts-background-color);\n stroke: none;\n stroke-linecap: round;\n}\n\n.highcharts-contextbutton:hover {\n fill: var(--highcharts-neutral-color-10);\n stroke: var(--highcharts-neutral-color-10);\n}\n\n.highcharts-button-symbol {\n stroke: var(--highcharts-neutral-color-60);\n stroke-width: 3px;\n}\n\n.highcharts-menu {\n border: none;\n background: var(--highcharts-background-color);\n border-radius: 3px;\n padding: 0.5em;\n box-shadow: 3px 3px 10px #888888;\n}\n\n.highcharts-menu-item {\n background: none;\n border-radius: 3px;\n color: var(--highcharts-neutral-color-80);\n cursor: pointer;\n font-size: 0.8em;\n list-style-type: none;\n padding: 0.5em;\n transition: background 250ms, color 250ms;\n}\n\n.highcharts-menu-item:hover {\n background: var(--highcharts-neutral-color-5);\n}\n\n/* Breadcrumbs */\n.highcharts-breadcrumbs-button {\n fill: none;\n stroke-width: 0;\n cursor: pointer;\n}\n\n.highcharts-breadcrumbs-separator {\n fill: var(--highcharts-neutral-color-60);\n}\n\n/* Drilldown module */\n.highcharts-drilldown-point {\n cursor: pointer;\n}\n\n.highcharts-drilldown-data-label text,\ntext.highcharts-drilldown-data-label,\n.highcharts-drilldown-axis-label {\n cursor: pointer;\n fill: var(--highcharts-highlight-color-100);\n font-weight: bold;\n text-decoration: underline;\n}\n\n/* No-data module */\n.highcharts-no-data text {\n font-weight: bold;\n font-size: 0.8em;\n fill: var(--highcharts-neutral-color-60);\n}\n\n/* Drag-panes module */\n.highcharts-axis-resizer {\n cursor: ns-resize;\n stroke: var(--highcharts-neutral-color-100);\n stroke-width: 2px;\n}\n\n/* Bullet type series */\n.highcharts-bullet-target {\n stroke-width: 0;\n}\n\n/* Lineargauge type series */\n.highcharts-lineargauge-target {\n stroke-width: 1px;\n stroke: var(--highcharts-neutral-color-80);\n}\n\n.highcharts-lineargauge-target-line {\n stroke-width: 1px;\n stroke: var(--highcharts-neutral-color-80);\n}\n\n/* Advanced annotations module */\n.highcharts-fibonacci-background-0,\n.highcharts-pitchfork-inner-background,\n.highcharts-measure-background {\n fill: var(--highcharts-annotation-color-0);\n}\n\n.highcharts-fibonacci-background-1 {\n fill: var(--highcharts-annotation-color-1);\n}\n\n.highcharts-fibonacci-background-2 {\n fill: var(--highcharts-annotation-color-2);\n}\n\n.highcharts-fibonacci-background-3,\n.highcharts-pitchfork-outer-background {\n fill: var(--highcharts-annotation-color-3);\n}\n\n.highcharts-fibonacci-background-4 {\n fill: var(--highcharts-annotation-color-4);\n}\n\n.highcharts-fibonacci-background-5 {\n fill: var(--highcharts-annotation-color-5);\n}\n\n.highcharts-fibonacci-line {\n stroke: var(--highcharts-neutral-color-40);\n}\n\n.highcharts-crooked-lines,\n.highcharts-tunnel-lines,\n.highcharts-infinity-lines,\n.highcharts-timecycles-lines,\n.highcharts-fibonacci-timezones-lines,\n.highcharts-pitchfork-lines,\n.highcharts-vertical-line,\n.highcharts-measure-crosshair-x,\n.highcharts-measure-crosshair-y {\n stroke: var(--highcharts-neutral-color-100);\n stroke-opacity: 0.75;\n fill: none;\n}\n\n.highcharts-measure-crosshair-x,\n.highcharts-measure-crosshair-y {\n stroke-dasharray: 1, 3;\n}\n\n.highcharts-tunnel-background {\n fill: var(--highcharts-color-0);\n}\n\n.highcharts-annotation-shapes {\n cursor: move;\n}\n\n.highcharts-basic-shape {\n fill: var(--highcharts-neutral-color-100);\n stroke: var(--highcharts-neutral-color-100);\n opacity: 0.74;\n}\n\n/* Annotations module */\n\n.highcharts-annotation-label-box {\n stroke-width: 1px;\n stroke: var(--highcharts-neutral-color-100);\n fill: var(--highcharts-neutral-color-100);\n fill-opacity: 0.75;\n}\n\n.highcharts-annotation-label text {\n fill: var(--highcharts-neutral-color-10);\n font-size: 0.8em;\n}\n\n/* A11y module */\n.highcharts-a11y-proxy-element {\n border-width: 0;\n background-color: transparent;\n cursor: pointer;\n outline: none;\n opacity: 0.001;\n z-index: 999;\n overflow: hidden;\n padding: 0;\n margin: 0;\n display: block;\n position: absolute;\n}\n\n.highcharts-a11y-proxy-group li {\n list-style: none;\n}\n\n.highcharts-visually-hidden {\n position: absolute;\n width: 1px;\n height: 1px;\n overflow: hidden;\n white-space: nowrap;\n clip: rect(1px, 1px, 1px, 1px);\n margin-top: -3px;\n opacity: 0.01;\n}\n\n.highcharts-a11y-invisible {\n visibility: hidden;\n}\n\n.highcharts-a11y-proxy-container,\n.highcharts-a11y-proxy-container-before,\n.highcharts-a11y-proxy-container-after {\n position: absolute;\n white-space: nowrap;\n}\n\ng.highcharts-series,\n.highcharts-markers,\n.highcharts-point {\n outline: none;\n}\n\n/* Gantt */\n.highcharts-treegrid-node-collapsed,\n.highcharts-treegrid-node-expanded {\n cursor: pointer;\n}\n\n.highcharts-point-connecting-path {\n fill: none;\n}\n\n.highcharts-grid-axis .highcharts-tick {\n stroke: var(--highcharts-neutral-color-20);\n stroke-width: 1px;\n}\n\n.highcharts-grid-axis .highcharts-axis-line {\n stroke: var(--highcharts-neutral-color-20);\n stroke-width: 1px;\n}\n","@import \"../../../../node_modules/highcharts/css/highcharts.css\";\n\n/* these need to be here instead of within the styled components code for this component because we set outside: true\nfor our chart tooltips, which renders them outside of the highcharts svg element and is appended to the end of the DOM */\n\n.highcharts-tooltip-container {\n\tz-index: 7 !important;\n}\n\n.highcharts-tooltip-box {\n\tfill: transparent;\n}\n"],"mappings":"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","names":[]}
|
package/dist/index.d.mts
CHANGED
|
@@ -1,11 +1,118 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
2
|
import { ReactNode } from 'react';
|
|
3
|
-
import {
|
|
4
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
|
+
import { TimeTicksInfoObject, AxisLabelsFormatterContextObject, Options, SeriesSplineOptions, SeriesAreasplineOptions, TooltipFormatterContextObject, AxisTickPositionsArray } from 'highcharts';
|
|
5
4
|
import * as _sproutsocial_seeds_react_box from '@sproutsocial/seeds-react-box';
|
|
6
5
|
import { TypeBoxProps } from '@sproutsocial/seeds-react-box';
|
|
6
|
+
import { Table } from '@sproutsocial/racine';
|
|
7
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
7
8
|
import * as styled_components from 'styled-components';
|
|
8
|
-
|
|
9
|
+
|
|
10
|
+
interface ExtendedTimeTicksInfoObject extends TimeTicksInfoObject {
|
|
11
|
+
unitName: "hour" | "day" | "week" | "month" | "year";
|
|
12
|
+
}
|
|
13
|
+
interface ExtendedAxisLabelsFormatterContextObject extends AxisLabelsFormatterContextObject {
|
|
14
|
+
tickPositionInfo: ExtendedTimeTicksInfoObject;
|
|
15
|
+
}
|
|
16
|
+
type TypeChartDataPoint = Readonly<{
|
|
17
|
+
x: number;
|
|
18
|
+
y: number | null;
|
|
19
|
+
}>;
|
|
20
|
+
type TypeChartDataStyles = Readonly<{
|
|
21
|
+
color?: TypeChartStyleColor;
|
|
22
|
+
}>;
|
|
23
|
+
type TypeChartNumberFormat = "decimal" | "percent" | "currency" | "duration";
|
|
24
|
+
type TypeChartTooltipDateFormatter = ({ x }: {
|
|
25
|
+
x: number;
|
|
26
|
+
}) => ReactNode;
|
|
27
|
+
type TypeChartTooltipProps = Readonly<{
|
|
28
|
+
data: ReadonlyArray<Readonly<{
|
|
29
|
+
color: TypeChartStyleColor;
|
|
30
|
+
name: string;
|
|
31
|
+
value: number | null;
|
|
32
|
+
icon?: ReactNode;
|
|
33
|
+
}>>;
|
|
34
|
+
x: number;
|
|
35
|
+
}>;
|
|
36
|
+
type TypeChartYAxisLabelFormatter = ({ y, yValues, }: Readonly<{
|
|
37
|
+
y: number;
|
|
38
|
+
yValues: ReadonlyArray<number>;
|
|
39
|
+
}>) => string;
|
|
40
|
+
type TypeChartStyleColor = string;
|
|
41
|
+
type TypeChartStylePattern = "solid" | "dashed";
|
|
42
|
+
type TypeChartStyleHasOnClick = boolean;
|
|
43
|
+
|
|
44
|
+
type TypeAreaChartProps = Readonly<{
|
|
45
|
+
data: ReadonlyArray<Readonly<{
|
|
46
|
+
name: string;
|
|
47
|
+
points: ReadonlyArray<TypeChartDataPoint>;
|
|
48
|
+
icon?: ReactNode;
|
|
49
|
+
styles?: TypeChartDataStyles;
|
|
50
|
+
}>>;
|
|
51
|
+
invalidNumberLabel: ReactNode;
|
|
52
|
+
numberLocale: Intl.LocalesArgument;
|
|
53
|
+
textLocale: Intl.LocalesArgument;
|
|
54
|
+
tooltipDateFormatter: TypeChartTooltipDateFormatter;
|
|
55
|
+
tooltipTotalLabel: ReactNode;
|
|
56
|
+
currency?: string;
|
|
57
|
+
numberFormat?: TypeChartNumberFormat;
|
|
58
|
+
tooltip?: ({ data, total, x, }: TypeChartTooltipProps & Readonly<{
|
|
59
|
+
total: number | null;
|
|
60
|
+
}>) => ReactNode;
|
|
61
|
+
yAxisLabelFormatter?: TypeChartYAxisLabelFormatter;
|
|
62
|
+
onClick?: ({ x }: Readonly<{
|
|
63
|
+
x: number;
|
|
64
|
+
}>) => void;
|
|
65
|
+
tooltipClickLabel?: ReactNode;
|
|
66
|
+
}>;
|
|
67
|
+
declare const AreaChart: react.NamedExoticComponent<Readonly<{
|
|
68
|
+
data: ReadonlyArray<Readonly<{
|
|
69
|
+
name: string;
|
|
70
|
+
points: ReadonlyArray<TypeChartDataPoint>;
|
|
71
|
+
icon?: ReactNode;
|
|
72
|
+
styles?: TypeChartDataStyles;
|
|
73
|
+
}>>;
|
|
74
|
+
invalidNumberLabel: ReactNode;
|
|
75
|
+
numberLocale: Intl.LocalesArgument;
|
|
76
|
+
textLocale: Intl.LocalesArgument;
|
|
77
|
+
tooltipDateFormatter: TypeChartTooltipDateFormatter;
|
|
78
|
+
tooltipTotalLabel: ReactNode;
|
|
79
|
+
currency?: string;
|
|
80
|
+
numberFormat?: TypeChartNumberFormat;
|
|
81
|
+
tooltip?: ({ data, total, x, }: TypeChartTooltipProps & Readonly<{
|
|
82
|
+
total: number | null;
|
|
83
|
+
}>) => ReactNode;
|
|
84
|
+
yAxisLabelFormatter?: TypeChartYAxisLabelFormatter;
|
|
85
|
+
onClick?: ({ x }: Readonly<{
|
|
86
|
+
x: number;
|
|
87
|
+
}>) => void;
|
|
88
|
+
tooltipClickLabel?: ReactNode;
|
|
89
|
+
}>>;
|
|
90
|
+
|
|
91
|
+
type TypeLegendLabel = Readonly<{
|
|
92
|
+
content: React.ReactNode;
|
|
93
|
+
color?: string;
|
|
94
|
+
}>;
|
|
95
|
+
type TypeChartLegendProps = Readonly<{
|
|
96
|
+
legendLabels: ReadonlyArray<TypeLegendLabel>;
|
|
97
|
+
containerBoxProps?: TypeBoxProps;
|
|
98
|
+
stacked?: boolean;
|
|
99
|
+
}>;
|
|
100
|
+
declare const ChartLegend: react.NamedExoticComponent<Readonly<{
|
|
101
|
+
legendLabels: ReadonlyArray<TypeLegendLabel>;
|
|
102
|
+
containerBoxProps?: TypeBoxProps;
|
|
103
|
+
stacked?: boolean;
|
|
104
|
+
}>>;
|
|
105
|
+
|
|
106
|
+
type TypeChartLegendLabelProps = Readonly<{
|
|
107
|
+
children: TypeLegendLabel["content"];
|
|
108
|
+
color: TypeLegendLabel["color"];
|
|
109
|
+
containerBoxProps?: TypeBoxProps;
|
|
110
|
+
}>;
|
|
111
|
+
declare const ChartLegendLabel: react.NamedExoticComponent<Readonly<{
|
|
112
|
+
children: TypeLegendLabel["content"];
|
|
113
|
+
color: TypeLegendLabel["color"];
|
|
114
|
+
containerBoxProps?: TypeBoxProps;
|
|
115
|
+
}>>;
|
|
9
116
|
|
|
10
117
|
type TypeChartTableProps = Readonly<{
|
|
11
118
|
rows: ReadonlyArray<{
|
|
@@ -28,6 +135,30 @@ declare const ChartTable: react.NamedExoticComponent<Readonly<{
|
|
|
28
135
|
}>;
|
|
29
136
|
}>>;
|
|
30
137
|
|
|
138
|
+
declare const ChartTooltip: react.NamedExoticComponent<Readonly<{
|
|
139
|
+
children: React.ReactNode;
|
|
140
|
+
}>>;
|
|
141
|
+
|
|
142
|
+
type TypeChartTooltipFooterProps = {
|
|
143
|
+
children: React.ReactNode;
|
|
144
|
+
};
|
|
145
|
+
declare const ChartTooltipFooter: react.NamedExoticComponent<TypeChartTooltipFooterProps>;
|
|
146
|
+
|
|
147
|
+
type TypeChartTooltipHeaderProps = {
|
|
148
|
+
children: React.ReactNode;
|
|
149
|
+
};
|
|
150
|
+
declare const ChartTooltipHeader: react.NamedExoticComponent<TypeChartTooltipHeaderProps>;
|
|
151
|
+
|
|
152
|
+
type TypeChartTooltipTableProps = {
|
|
153
|
+
rows: TypeChartTableProps["rows"];
|
|
154
|
+
};
|
|
155
|
+
declare const ChartTooltipTable: react.NamedExoticComponent<TypeChartTooltipTableProps>;
|
|
156
|
+
|
|
157
|
+
type TypeChartTooltipTitleProps = {
|
|
158
|
+
children: React.ReactNode;
|
|
159
|
+
};
|
|
160
|
+
declare const ChartTooltipTitle: react.NamedExoticComponent<TypeChartTooltipTitleProps>;
|
|
161
|
+
|
|
31
162
|
type TypeColorBoxProps = TypeBoxProps;
|
|
32
163
|
/**
|
|
33
164
|
* ColorBox extends Box to apply basic styles.
|
|
@@ -62,74 +193,82 @@ type TypeNetworkColorBoxProps = Readonly<TypeColorBoxProps & {
|
|
|
62
193
|
*/
|
|
63
194
|
declare const NetworkColorBox: ({ networkColor, ...props }: TypeNetworkColorBoxProps) => react_jsx_runtime.JSX.Element;
|
|
64
195
|
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
declare const DONUT_CHART_WIDTH: number;
|
|
72
|
-
declare const donutChartOptions: Options;
|
|
73
|
-
|
|
74
|
-
interface ExtendedTimeTicksInfoObject extends TimeTicksInfoObject {
|
|
75
|
-
unitName: "hour" | "day" | "week" | "month" | "year";
|
|
76
|
-
}
|
|
77
|
-
interface ExtendedAxisLabelsFormatterContextObject extends AxisLabelsFormatterContextObject {
|
|
78
|
-
tickPositionInfo: ExtendedTimeTicksInfoObject;
|
|
79
|
-
}
|
|
80
|
-
type TypeChartDataPoint = Readonly<{
|
|
81
|
-
x: number;
|
|
82
|
-
y: number | null;
|
|
196
|
+
type TypeDonutChartTooltipProps = Readonly<{
|
|
197
|
+
color: string;
|
|
198
|
+
name: string;
|
|
199
|
+
percent: number | null;
|
|
200
|
+
value: number | null;
|
|
201
|
+
icon?: ReactNode;
|
|
83
202
|
}>;
|
|
84
|
-
type
|
|
85
|
-
|
|
203
|
+
type TypeDonutChartProps = Readonly<{
|
|
204
|
+
data: ReadonlyArray<Readonly<{
|
|
205
|
+
name: string;
|
|
206
|
+
value: number;
|
|
207
|
+
icon?: ReactNode;
|
|
208
|
+
styles?: TypeChartDataStyles;
|
|
209
|
+
}>>;
|
|
210
|
+
numberLocale: Intl.LocalesArgument;
|
|
211
|
+
textLocale: Intl.LocalesArgument;
|
|
212
|
+
currency?: string;
|
|
213
|
+
hideLegend?: boolean;
|
|
214
|
+
numberFormat?: TypeChartNumberFormat;
|
|
215
|
+
tooltip?: ({ color, name, percent, value, }: TypeDonutChartTooltipProps) => ReactNode;
|
|
86
216
|
}>;
|
|
87
|
-
|
|
88
|
-
type TypeChartTooltipDateFormatter = ({ x }: {
|
|
89
|
-
x: number;
|
|
90
|
-
}) => ReactNode;
|
|
91
|
-
type TypeChartTooltipProps = Readonly<{
|
|
217
|
+
declare const DonutChart: react.NamedExoticComponent<Readonly<{
|
|
92
218
|
data: ReadonlyArray<Readonly<{
|
|
93
|
-
color: TypeChartStyleColor;
|
|
94
219
|
name: string;
|
|
95
|
-
value: number
|
|
220
|
+
value: number;
|
|
96
221
|
icon?: ReactNode;
|
|
222
|
+
styles?: TypeChartDataStyles;
|
|
97
223
|
}>>;
|
|
98
|
-
|
|
224
|
+
numberLocale: Intl.LocalesArgument;
|
|
225
|
+
textLocale: Intl.LocalesArgument;
|
|
226
|
+
currency?: string;
|
|
227
|
+
hideLegend?: boolean;
|
|
228
|
+
numberFormat?: TypeChartNumberFormat;
|
|
229
|
+
tooltip?: ({ color, name, percent, value, }: TypeDonutChartTooltipProps) => ReactNode;
|
|
230
|
+
}>>;
|
|
231
|
+
|
|
232
|
+
type TypeDonutChartLegendTableProps = Readonly<{
|
|
233
|
+
data: TypeDonutChartProps["data"];
|
|
234
|
+
numberLocale: TypeDonutChartProps["numberLocale"];
|
|
235
|
+
textLocale: TypeDonutChartProps["textLocale"];
|
|
236
|
+
totalLabel: React.ReactNode;
|
|
237
|
+
currency?: TypeDonutChartProps["currency"];
|
|
238
|
+
numberFormat?: TypeDonutChartProps["numberFormat"];
|
|
99
239
|
}>;
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
240
|
+
declare const DonutChartLegendTable: react.NamedExoticComponent<Readonly<{
|
|
241
|
+
data: TypeDonutChartProps["data"];
|
|
242
|
+
numberLocale: TypeDonutChartProps["numberLocale"];
|
|
243
|
+
textLocale: TypeDonutChartProps["textLocale"];
|
|
244
|
+
totalLabel: React.ReactNode;
|
|
245
|
+
currency?: TypeDonutChartProps["currency"];
|
|
246
|
+
numberFormat?: TypeDonutChartProps["numberFormat"];
|
|
247
|
+
}>>;
|
|
107
248
|
|
|
108
|
-
type
|
|
249
|
+
type TypeLineChartProps = Readonly<{
|
|
109
250
|
data: ReadonlyArray<Readonly<{
|
|
110
251
|
name: string;
|
|
111
252
|
points: ReadonlyArray<TypeChartDataPoint>;
|
|
112
253
|
icon?: ReactNode;
|
|
113
|
-
styles?: TypeChartDataStyles
|
|
254
|
+
styles?: TypeChartDataStyles & Readonly<{
|
|
255
|
+
pattern?: TypeChartStylePattern;
|
|
256
|
+
}>;
|
|
114
257
|
}>>;
|
|
115
258
|
invalidNumberLabel: ReactNode;
|
|
116
259
|
numberLocale: Intl.LocalesArgument;
|
|
117
260
|
textLocale: Intl.LocalesArgument;
|
|
118
261
|
tooltipDateFormatter: TypeChartTooltipDateFormatter;
|
|
119
|
-
tooltipTotalLabel: ReactNode;
|
|
120
262
|
currency?: string;
|
|
121
263
|
numberFormat?: TypeChartNumberFormat;
|
|
122
|
-
tooltip?: ({ data,
|
|
123
|
-
total: number | null;
|
|
124
|
-
}>) => ReactNode;
|
|
264
|
+
tooltip?: ({ data, x }: TypeChartTooltipProps) => ReactNode;
|
|
125
265
|
yAxisLabelFormatter?: TypeChartYAxisLabelFormatter;
|
|
126
266
|
onClick?: ({ x }: Readonly<{
|
|
127
267
|
x: number;
|
|
128
268
|
}>) => void;
|
|
129
269
|
tooltipClickLabel?: ReactNode;
|
|
130
270
|
}>;
|
|
131
|
-
|
|
132
|
-
type TypeLineChartProps = Readonly<{
|
|
271
|
+
declare const LineChart: react.NamedExoticComponent<Readonly<{
|
|
133
272
|
data: ReadonlyArray<Readonly<{
|
|
134
273
|
name: string;
|
|
135
274
|
points: ReadonlyArray<TypeChartDataPoint>;
|
|
@@ -150,7 +289,16 @@ type TypeLineChartProps = Readonly<{
|
|
|
150
289
|
x: number;
|
|
151
290
|
}>) => void;
|
|
152
291
|
tooltipClickLabel?: ReactNode;
|
|
153
|
-
}
|
|
292
|
+
}>>;
|
|
293
|
+
|
|
294
|
+
declare const baseChartOptions: Options;
|
|
295
|
+
declare const TIME_SERIES_CHART_HEIGHT = 275;
|
|
296
|
+
declare const lineChartOptions: Options;
|
|
297
|
+
declare const areaChartOptions: Options;
|
|
298
|
+
declare const DONUT_CHART_HALO_SIZE = 10;
|
|
299
|
+
declare const DONUT_CHART_HEIGHT: number;
|
|
300
|
+
declare const DONUT_CHART_WIDTH: number;
|
|
301
|
+
declare const donutChartOptions: Options;
|
|
154
302
|
|
|
155
303
|
type TypeTimeSeriesOptions = SeriesSplineOptions | SeriesAreasplineOptions;
|
|
156
304
|
declare const transformDataToSeries: ({ data }: {
|
|
@@ -182,4 +330,4 @@ type TypeYAxisLabelFormatterProps = Readonly<{
|
|
|
182
330
|
}>;
|
|
183
331
|
declare const yAxisLabelFormatter: ({ numberLocale, textLocale, tickPositions, value, currency, numberFormat, }: TypeYAxisLabelFormatterProps) => string;
|
|
184
332
|
|
|
185
|
-
export { ChartTable, ColorBox, DONUT_CHART_HALO_SIZE, DONUT_CHART_HEIGHT, DONUT_CHART_WIDTH, DatavizColorBox, type ExtendedAxisLabelsFormatterContextObject, type ExtendedTimeTicksInfoObject, NetworkColorBox, TIME_SERIES_CHART_HEIGHT, type TypeChartDataPoint, type TypeChartDataStyles, type TypeChartNumberFormat, type TypeChartStyleColor, type TypeChartStyleHasOnClick, type TypeChartStylePattern, type TypeChartTableProps, type TypeChartTooltipDateFormatter, type TypeChartTooltipProps, type TypeChartYAxisLabelFormatter, type TypeColorBoxProps, type TypeDatavizColorBox, type TypeDatavizColorBoxProps, areaChartOptions, baseChartOptions, donutChartOptions, getDatavizColor, getDatavizColorWithAlpha, getDatavizOpacity, lineChartOptions, transformDataToSeries, transformTimeSeriesTooltipData, xAxisLabelFormatter, yAxisLabelFormatter };
|
|
333
|
+
export { AreaChart, ChartLegend, ChartLegendLabel, ChartTable, ChartTooltip, ChartTooltipFooter, ChartTooltipHeader, ChartTooltipTable, ChartTooltipTitle, ColorBox, DONUT_CHART_HALO_SIZE, DONUT_CHART_HEIGHT, DONUT_CHART_WIDTH, DatavizColorBox, DonutChart, DonutChartLegendTable, type ExtendedAxisLabelsFormatterContextObject, type ExtendedTimeTicksInfoObject, LineChart, NetworkColorBox, TIME_SERIES_CHART_HEIGHT, type TypeAreaChartProps, type TypeChartDataPoint, type TypeChartDataStyles, type TypeChartLegendLabelProps, type TypeChartLegendProps, type TypeChartNumberFormat, type TypeChartStyleColor, type TypeChartStyleHasOnClick, type TypeChartStylePattern, type TypeChartTableProps, type TypeChartTooltipDateFormatter, type TypeChartTooltipProps, type TypeChartTooltipTableProps, type TypeChartYAxisLabelFormatter, type TypeColorBoxProps, type TypeDatavizColorBox, type TypeDatavizColorBoxProps, type TypeDonutChartLegendTableProps, type TypeDonutChartProps, type TypeDonutChartTooltipProps, type TypeLegendLabel, type TypeLineChartProps, areaChartOptions, baseChartOptions, donutChartOptions, getDatavizColor, getDatavizColorWithAlpha, getDatavizOpacity, lineChartOptions, transformDataToSeries, transformTimeSeriesTooltipData, xAxisLabelFormatter, yAxisLabelFormatter };
|