diff --git a/README.md b/README.md index 3186dc3..165be80 100644 --- a/README.md +++ b/README.md @@ -1,19 +1,89 @@ -### Development +# Statusmap panel for Grafana + + + +## Features + +* Group values into rows and buckets by query's legend +* User defined color mapping +* Multiple values in bucket display in tooltip +* Interval shaping to better visual representation +* Represent null values as empty bucket or as zero value + +### Supported environment + +* Prometheus datasource +* Tested with Grafana 5.1.3 + + +## Motivation + +This plugin emerges from our needs to visually represent history of changes for a set of objects +with discrete statuses. +_Objects_ can be hosts, Kubernetes pods or coffee makers and _discrete statuses_ are a set +of predefined values: something like `ok` = 0, `off` = 1, `fail` = 2. + +## Configuration + +Recommended setup is to create query for each possible status value with similar legend: + + + +Next define color mapping for status values in __Discrete__ color mode. + + + + +__Spectrum__ and __Opacity__ color modes works as in a [Heatmap](https://grafana.com/plugins/heatmap) plugin. + + +### More options + + + +__Multiple values__ check determine multiple values display mode. If check is unset then multiple values +for one bucket treated as error. If check is on then color for bucket determined +by value with least index in color mapping. + + + +__Null values__ can be treated as empty buckets or displayed as color of 0 value. + + + +__Min width__ and __spacing__ are determine minimal bucket width and vertical and horizontal spacing between buckets. +__Rounding__ is for round edges. + + + + +## Development + +The easy way to test and develop plugin is to run Grafana instance in docker with following command in the directory containing the plugin. +This will expose the local plugin on your machine to the Grafana container. ``` -docker run --rm -it -v $PWD:/var/lib/grafana/plugins/status-heatmap-panel \ +docker run --rm -it -v $PWD:/var/lib/grafana/plugins/flant-statusmap-panel \ -p 3000:3000 --name grafana.docker \ --env=GF_USERS_DEFAULT_THEME=light \ grafana/grafana:5.1.3 ``` +Now run `grunt` to compile dist directory and start changes watcher: + ``` grunt watch ``` -Prometheus +## Acknowledgements + +Idea of a plugin comes from Dmitry Stolyarov @distol, initial version written by Sergey Gnuskov @gsmetal and final changes made by Ivan Mikheykin @diafour. + +This plugin is based on a "Heatmap" panel by Grafana and inspired by ideas from Carpet plot, Discrete panel, Status Panel, Status Dot, Status By Group. + +#### Changelog + +##### v0.0.1 + +- First public release -``` -ssh kube-cluster -L 3001:localhost:9001 -kubectl port-forward prometheus-0 9001:9090 -n prom-namespace -``` diff --git a/dist/README.md b/dist/README.md new file mode 100644 index 0000000..165be80 --- /dev/null +++ b/dist/README.md @@ -0,0 +1,89 @@ +# Statusmap panel for Grafana + + + +## Features + +* Group values into rows and buckets by query's legend +* User defined color mapping +* Multiple values in bucket display in tooltip +* Interval shaping to better visual representation +* Represent null values as empty bucket or as zero value + +### Supported environment + +* Prometheus datasource +* Tested with Grafana 5.1.3 + + +## Motivation + +This plugin emerges from our needs to visually represent history of changes for a set of objects +with discrete statuses. +_Objects_ can be hosts, Kubernetes pods or coffee makers and _discrete statuses_ are a set +of predefined values: something like `ok` = 0, `off` = 1, `fail` = 2. + +## Configuration + +Recommended setup is to create query for each possible status value with similar legend: + + + +Next define color mapping for status values in __Discrete__ color mode. + + + + +__Spectrum__ and __Opacity__ color modes works as in a [Heatmap](https://grafana.com/plugins/heatmap) plugin. + + +### More options + + + +__Multiple values__ check determine multiple values display mode. If check is unset then multiple values +for one bucket treated as error. If check is on then color for bucket determined +by value with least index in color mapping. + + + +__Null values__ can be treated as empty buckets or displayed as color of 0 value. + + + +__Min width__ and __spacing__ are determine minimal bucket width and vertical and horizontal spacing between buckets. +__Rounding__ is for round edges. + + + + +## Development + +The easy way to test and develop plugin is to run Grafana instance in docker with following command in the directory containing the plugin. +This will expose the local plugin on your machine to the Grafana container. + +``` +docker run --rm -it -v $PWD:/var/lib/grafana/plugins/flant-statusmap-panel \ + -p 3000:3000 --name grafana.docker \ + --env=GF_USERS_DEFAULT_THEME=light \ + grafana/grafana:5.1.3 +``` + +Now run `grunt` to compile dist directory and start changes watcher: + +``` +grunt watch +``` + +## Acknowledgements + +Idea of a plugin comes from Dmitry Stolyarov @distol, initial version written by Sergey Gnuskov @gsmetal and final changes made by Ivan Mikheykin @diafour. + +This plugin is based on a "Heatmap" panel by Grafana and inspired by ideas from Carpet plot, Discrete panel, Status Panel, Status Dot, Status By Group. + +#### Changelog + +##### v0.0.1 + +- First public release + diff --git a/dist/color_legend.js b/dist/color_legend.js new file mode 100644 index 0000000..f085483 --- /dev/null +++ b/dist/color_legend.js @@ -0,0 +1,411 @@ +'use strict'; + +System.register(['angular', 'lodash', 'jquery', 'd3', './libs/d3-scale-chromatic/index', 'app/core/core', 'app/core/utils/ticks'], function (_export, _context) { + "use strict"; + + var angular, _, $, d3, d3ScaleChromatic, contextSrv, tickStep, mod, MIN_LEGEND_STEPS; + + function drawColorLegend(elem, colorScheme, rangeFrom, rangeTo, maxValue, minValue) { + var legendElem = $(elem).find('svg'); + var legend = d3.select(legendElem.get(0)); + clearLegend(elem); + + var legendWidth = Math.floor(legendElem.outerWidth()) - 30; + var legendHeight = legendElem.attr("height"); + + var rangeStep = 1; + if (rangeTo - rangeFrom > legendWidth) { + rangeStep = Math.floor((rangeTo - rangeFrom) / legendWidth); + } + + if (rangeStep * MIN_LEGEND_STEPS > rangeTo) { + rangeStep = rangeTo / MIN_LEGEND_STEPS; + } + + var widthFactor = legendWidth / (rangeTo - rangeFrom); + var valuesRange = d3.range(rangeFrom, rangeTo, rangeStep); + + var colorScale = getColorScale(colorScheme, maxValue, minValue); + legend.selectAll(".status-heatmap-color-legend-rect").data(valuesRange).enter().append("rect").attr("x", function (d) { + return d * widthFactor; + }).attr("y", 0).attr("width", rangeStep * widthFactor + 1) // Overlap rectangles to prevent gaps + .attr("height", legendHeight).attr("stroke-width", 0).attr("fill", function (d) { + return colorScale(d); + }); + + drawLegendValues(elem, colorScale, rangeFrom, rangeTo, maxValue, minValue, legendWidth); + } + + function drawOpacityLegend(elem, options, rangeFrom, rangeTo, maxValue, minValue) { + var legendElem = $(elem).find('svg'); + var legend = d3.select(legendElem.get(0)); + clearLegend(elem); + + var legendWidth = Math.floor(legendElem.outerWidth()) - 30; + var legendHeight = legendElem.attr("height"); + + var rangeStep = 10; + var widthFactor = legendWidth / (rangeTo - rangeFrom); + + if (rangeStep * MIN_LEGEND_STEPS > rangeTo) { + rangeStep = rangeTo / MIN_LEGEND_STEPS; + } + + var valuesRange = d3.range(rangeFrom, rangeTo, rangeStep); + + var opacityScale = getOpacityScale(options, maxValue, minValue); + legend.selectAll(".status-heatmap-opacity-legend-rect").data(valuesRange).enter().append("rect").attr("x", function (d) { + return d * widthFactor; + }).attr("y", 0).attr("width", rangeStep * widthFactor).attr("height", legendHeight).attr("stroke-width", 0).attr("fill", options.cardColor).style("opacity", function (d) { + return opacityScale(d); + }); + + drawLegendValues(elem, opacityScale, rangeFrom, rangeTo, maxValue, minValue, legendWidth); + } + + function drawDiscreteColorLegend(elem, colorOptions, discreteHelper) { + var legendElem = $(elem).find('svg'); + var legend = d3.select(legendElem.get(0)); + clearLegend(elem); + + var thresholds = colorOptions.thresholds; + var tooltips = _.map(thresholds, function (tr) { + return tr.tooltip; + }); + var valuesNumber = thresholds.length; + + // graph width as a fallback + var $heatmap = $(elem).parent().parent().parent().find('.status-heatmap-panel'); + var graphWidth = $heatmap.find('svg').attr("width"); + + // calculate max width of tooltip and use it as width for each item + var textWidth = []; + legend.selectAll(".hidden-texts").data(tooltips).enter().append("text").attr("class", "axis tick").attr("font-family", "sans-serif").text(function (d) { + return d; + }).each(function (d, i) { + var thisWidth = this.getBBox().width; + textWidth.push(thisWidth); + this.remove(); // remove them just after displaying them + }); + + var legendWidth = Math.floor(_.min([graphWidth - 30, (_.max(textWidth) + 3) * valuesNumber])); + legendElem.attr("width", legendWidth); + + var legendHeight = legendElem.attr("height"); + + var itemWidth = Math.floor(legendWidth / valuesNumber); + var valuesRange = d3.range(valuesNumber); // from 0 to valuesNumber-1 + + legend.selectAll(".status-heatmap-color-legend-rect").data(valuesRange).enter().append("rect").attr("x", function (d) { + return d * itemWidth; + }).attr("y", 0).attr("width", itemWidth + 1) // Overlap rectangles to prevent gaps + .attr("height", legendHeight).attr("stroke-width", 0).attr("fill", function (d) { + return discreteHelper.getDiscreteColor(d); + }); + + drawDiscreteLegendValues(elem, colorOptions, legendWidth); + } + + function drawLegendValues(elem, colorScale, rangeFrom, rangeTo, maxValue, minValue, legendWidth) { + var legendElem = $(elem).find('svg'); + var legend = d3.select(legendElem.get(0)); + + if (legendWidth <= 0 || legendElem.get(0).childNodes.length === 0) { + return; + } + + var legendValueScale = d3.scaleLinear().domain([0, rangeTo]).range([0, legendWidth]); + + var ticks = buildLegendTicks(0, rangeTo, maxValue, minValue); + var xAxis = d3.axisBottom(legendValueScale).tickValues(ticks).tickSize(2); + + var colorRect = legendElem.find(":first-child"); + var posY = getSvgElemHeight(legendElem) + 2; + var posX = getSvgElemX(colorRect); + + d3.select(legendElem.get(0)).append("g").attr("class", "axis").attr("transform", "translate(" + posX + "," + posY + ")").call(xAxis); + + legend.select(".axis").select(".domain").remove(); + } + + function drawDiscreteLegendValues(elem, colorOptions, legendWidth) { + var thresholds = colorOptions.thresholds; + + var legendElem = $(elem).find('svg'); + var legend = d3.select(legendElem.get(0)); + + if (legendWidth <= 0 || legendElem.get(0).childNodes.length === 0) { + return; + } + + var valuesNumber = thresholds.length; + var rangeStep = Math.floor(legendWidth / valuesNumber); + var valuesRange = d3.range(0, legendWidth, rangeStep); + + var legendValueScale = d3.scaleLinear().domain([0, valuesNumber]).range([0, legendWidth]); + + var thresholdValues = []; + var thresholdTooltips = []; + for (var i = 0; i < thresholds.length; i++) { + thresholdValues.push(thresholds[i].value); + thresholdTooltips.push(thresholds[i].tooltip); + } + + var xAxis = d3.axisBottom(legendValueScale).tickValues(d3.range(0, valuesNumber, 1)) //thresholdValues) + .tickSize(2).tickFormat(function (t) { + var i = Math.floor(t); + var v = thresholdTooltips[i]; + if (v != undefined) { + return "" + v; + } else { + v = thresholdValues[i]; + if (v != undefined) { + return "" + v; + } else { + return "n/a"; + } + } + }); + + var colorRect = legendElem.find(":first-child"); + var posY = getSvgElemHeight(legendElem) + 2; + var posX = getSvgElemX(colorRect) + Math.floor(rangeStep / 2); + + d3.select(legendElem.get(0)).append("g").attr("class", "axis").attr("transform", "translate(" + posX + "," + posY + ")").call(xAxis); + + legend.select(".axis").select(".domain").remove(); + } + + function drawSimpleColorLegend(elem, colorScale) { + var legendElem = $(elem).find('svg'); + clearLegend(elem); + + var legendWidth = Math.floor(legendElem.outerWidth()); + var legendHeight = legendElem.attr("height"); + + if (legendWidth) { + var valuesNumber = Math.floor(legendWidth / 2); + var rangeStep = Math.floor(legendWidth / valuesNumber); + var valuesRange = d3.range(0, legendWidth, rangeStep); + + var legend = d3.select(legendElem.get(0)); + var legendRects = legend.selectAll(".status-heatmap-color-legend-rect").data(valuesRange); + + legendRects.enter().append("rect").attr("x", function (d) { + return d; + }).attr("y", 0).attr("width", rangeStep + 1) // Overlap rectangles to prevent gaps + .attr("height", legendHeight).attr("stroke-width", 0).attr("fill", function (d) { + return colorScale(d); + }); + } + } + + function drawSimpleOpacityLegend(elem, options) { + var legendElem = $(elem).find('svg'); + var graphElem = $(elem); + clearLegend(elem); + + var legend = d3.select(legendElem.get(0)); + var legendWidth = Math.floor(legendElem.outerWidth()); + var legendHeight = legendElem.attr("height"); + + if (legendWidth) { + var legendOpacityScale = void 0; + if (options.colorScale === 'linear') { + legendOpacityScale = d3.scaleLinear().domain([0, legendWidth]).range([0, 1]); + } else if (options.colorScale === 'sqrt') { + legendOpacityScale = d3.scalePow().exponent(options.exponent).domain([0, legendWidth]).range([0, 1]); + } + + var rangeStep = 10; + var valuesRange = d3.range(0, legendWidth, rangeStep); + var legendRects = legend.selectAll(".status-heatmap-opacity-legend-rect").data(valuesRange); + + legendRects.enter().append("rect").attr("x", function (d) { + return d; + }).attr("y", 0).attr("width", rangeStep).attr("height", legendHeight).attr("stroke-width", 0).attr("fill", options.cardColor).style("opacity", function (d) { + return legendOpacityScale(d); + }); + } + } + + function clearLegend(elem) { + var legendElem = $(elem).find('svg'); + legendElem.empty(); + } + + function getColorScale(colorScheme, maxValue) { + var minValue = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 0; + + var colorInterpolator = d3ScaleChromatic[colorScheme.value]; + var colorScaleInverted = colorScheme.invert === 'always' || colorScheme.invert === 'dark' && !contextSrv.user.lightTheme; + + var start = colorScaleInverted ? maxValue : minValue; + var end = colorScaleInverted ? minValue : maxValue; + + return d3.scaleSequential(colorInterpolator).domain([start, end]); + } + + function getOpacityScale(options, maxValue) { + var minValue = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 0; + + var legendOpacityScale = void 0; + if (options.colorScale === 'linear') { + legendOpacityScale = d3.scaleLinear().domain([minValue, maxValue]).range([0, 1]); + } else if (options.colorScale === 'sqrt') { + legendOpacityScale = d3.scalePow().exponent(options.exponent).domain([minValue, maxValue]).range([0, 1]); + } + return legendOpacityScale; + } + + function getSvgElemX(elem) { + var svgElem = elem.get(0); + if (svgElem && svgElem.x && svgElem.x.baseVal) { + return svgElem.x.baseVal.value; + } else { + return 0; + } + } + + function getSvgElemHeight(elem) { + var svgElem = elem.get(0); + if (svgElem && svgElem.height && svgElem.height.baseVal) { + return svgElem.height.baseVal.value; + } else { + return 0; + } + } + + function buildLegendTicks(rangeFrom, rangeTo, maxValue, minValue) { + var range = rangeTo - rangeFrom; + var tickStepSize = tickStep(rangeFrom, rangeTo, 3); + var ticksNum = Math.round(range / tickStepSize); + var ticks = []; + + for (var i = 0; i < ticksNum; i++) { + var current = tickStepSize * i; + // Add user-defined min and max if it had been set + if (isValueCloseTo(minValue, current, tickStepSize)) { + ticks.push(minValue); + continue; + } else if (minValue < current) { + ticks.push(minValue); + } + if (isValueCloseTo(maxValue, current, tickStepSize)) { + ticks.push(maxValue); + continue; + } else if (maxValue < current) { + ticks.push(maxValue); + } + ticks.push(tickStepSize * i); + } + if (!isValueCloseTo(maxValue, rangeTo, tickStepSize)) { + ticks.push(maxValue); + } + ticks.push(rangeTo); + ticks = _.sortBy(_.uniq(ticks)); + return ticks; + } + + function isValueCloseTo(val, valueTo, step) { + var diff = Math.abs(val - valueTo); + return diff < step * 0.3; + } + return { + setters: [function (_angular) { + angular = _angular.default; + }, function (_lodash) { + _ = _lodash.default; + }, function (_jquery) { + $ = _jquery.default; + }, function (_d) { + d3 = _d.default; + }, function (_libsD3ScaleChromaticIndex) { + d3ScaleChromatic = _libsD3ScaleChromaticIndex; + }, function (_appCoreCore) { + contextSrv = _appCoreCore.contextSrv; + }, function (_appCoreUtilsTicks) { + tickStep = _appCoreUtilsTicks.tickStep; + }], + execute: function () { + mod = angular.module('grafana.directives'); + MIN_LEGEND_STEPS = 10; + + + /** + * Color legend for heatmap editor. + */ + mod.directive('optionsColorLegend', function () { + return { + restrict: 'E', + template: '
', + link: function link(scope, elem, attrs) { + var ctrl = scope.ctrl; + var panel = scope.ctrl.panel; + + render(); + + ctrl.events.on('render', function () { + render(); + }); + + function render() { + var legendElem = $(elem).find('svg'); + var legendWidth = Math.floor(legendElem.outerWidth()); + + if (panel.color.mode === 'spectrum') { + var colorScheme = _.find(ctrl.colorSchemes, { value: panel.color.colorScheme }); + var colorScale = getColorScale(colorScheme, legendWidth); + drawSimpleColorLegend(elem, colorScale); + } else if (panel.color.mode === 'opacity') { + var colorOptions = panel.color; + drawSimpleOpacityLegend(elem, colorOptions); + } + } + } + }; + }); + + /** + * Heatmap legend with scale values. + */ + mod.directive('statusHeatmapLegend', function () { + return { + restrict: 'E', + template: '', + link: function link(scope, elem, attrs) { + var ctrl = scope.ctrl; + var panel = scope.ctrl.panel; + + render(); + ctrl.events.on('render', function () { + render(); + }); + + function render() { + clearLegend(elem); + if (!_.isEmpty(ctrl.cardsData) && !_.isEmpty(ctrl.cardsData.cards)) { + var rangeFrom = ctrl.cardsData.minValue; + var rangeTo = ctrl.cardsData.maxValue; + var maxValue = panel.color.max || rangeTo; + var minValue = panel.color.min || rangeFrom; + + if (panel.color.mode === 'spectrum') { + var colorScheme = _.find(ctrl.colorSchemes, { value: panel.color.colorScheme }); + drawColorLegend(elem, colorScheme, rangeFrom, rangeTo, maxValue, minValue); + } else if (panel.color.mode === 'opacity') { + var colorOptions = panel.color; + drawOpacityLegend(elem, colorOptions, rangeFrom, rangeTo, maxValue, minValue); + } else if (panel.color.mode === 'discrete') { + var _colorOptions = panel.color; + drawDiscreteColorLegend(elem, _colorOptions, ctrl.discreteHelper); + } + } + } + } + }; + }); + } + }; +}); +//# sourceMappingURL=color_legend.js.map diff --git a/dist/color_mode_discrete.js b/dist/color_mode_discrete.js new file mode 100644 index 0000000..41db277 --- /dev/null +++ b/dist/color_mode_discrete.js @@ -0,0 +1,245 @@ +"use strict"; + +System.register(["lodash"], function (_export, _context) { + "use strict"; + + var _, _createClass, ColorModeDiscrete; + + function _classCallCheck(instance, Constructor) { + if (!(instance instanceof Constructor)) { + throw new TypeError("Cannot call a class as a function"); + } + } + + return { + setters: [function (_lodash) { + _ = _lodash.default; + }], + execute: function () { + _createClass = function () { + function defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) descriptor.writable = true; + Object.defineProperty(target, descriptor.key, descriptor); + } + } + + return function (Constructor, protoProps, staticProps) { + if (protoProps) defineProperties(Constructor.prototype, protoProps); + if (staticProps) defineProperties(Constructor, staticProps); + return Constructor; + }; + }(); + + _export("ColorModeDiscrete", ColorModeDiscrete = function () { + function ColorModeDiscrete(scope) { + _classCallCheck(this, ColorModeDiscrete); + + this.scope = scope; + this.panelCtrl = scope.ctrl; + this.panel = scope.ctrl.panel; + } + + // get tooltip for each value ordered by thresholds priority + + + _createClass(ColorModeDiscrete, [{ + key: "convertValuesToTooltips", + value: function convertValuesToTooltips(values) { + var thresholds = this.panel.color.thresholds; + var tooltips = []; + + for (var i = 0; i < thresholds.length; i++) { + for (var j = 0; j < values.length; j++) { + if (values[j] == thresholds[i].value) { + tooltips.push({ + "tooltip": thresholds[i].tooltip ? thresholds[i].tooltip : values[j], + "color": thresholds[i].color + }); + } + } + } + return tooltips; + } + }, { + key: "getNotMatchedValues", + value: function getNotMatchedValues(values) { + var notMatched = []; + for (var j = 0; j < values.length; j++) { + if (!this.getMatchedThreshold(values[j])) { + notMatched.push(values[j]); + } + } + return notMatched; + } + }, { + key: "getNotColoredValues", + value: function getNotColoredValues(values) { + var notMatched = []; + for (var j = 0; j < values.length; j++) { + var threshold = this.getMatchedThreshold(values[j]); + if (!threshold || !threshold.color || threshold.color == "") { + notMatched.push(values[j]); + } + } + return notMatched; + } + }, { + key: "getDiscreteColor", + value: function getDiscreteColor(index) { + var color = this.getThreshold(index).color; + if (!color || color == "") { + return 'rgba(0,0,0,1)'; + } + return color; + } + }, { + key: "getBucketColor", + value: function getBucketColor(values) { + var thresholds = this.panel.color.thresholds; + + for (var i = 0; i < thresholds.length; i++) { + for (var j = 0; j < values.length; j++) { + if (values[j] == thresholds[i].value) { + return this.getDiscreteColor(i); + } + } + } + return 'rgba(0,0,0,1)'; + } + }, { + key: "updateCardsValuesHasColorInfo", + value: function updateCardsValuesHasColorInfo() { + if (!this.panelCtrl.cardsData) { + return; + } + this.panelCtrl.cardsData.noColorDefined = false; + var cards = this.panelCtrl.cardsData.cards; + for (var i = 0; i < cards.length; i++) { + cards[i].noColorDefined = false; + var values = cards[i].values; + for (var j = 0; j < values.length; j++) { + var threshold = this.getMatchedThreshold(values[j]); + if (!threshold || !threshold.color || threshold.color == "") { + cards[i].noColorDefined = true; + this.panelCtrl.cardsData.noColorDefined = true; + break; + } + } + } + } + }, { + key: "getMatchedThreshold", + value: function getMatchedThreshold(value) { + if (value == null) { + if (this.panel.color.nullPointMode == 'as empty') { + // FIXME: make this explicit for user + // Right now this color never used because null as empty handles in getCardOpacity method. + return { + "color": "rgba(0,0,0,0)", + "value": "null", + "tooltip": "null" + }; + } else { + value = 0; + } + } + + var thresholds = this.panel.color.thresholds; + for (var k = 0; k < thresholds.length; k++) { + if (value == thresholds[k].value) { + return thresholds[k]; + } + } + return null; + } + }, { + key: "getThreshold", + value: function getThreshold(index) { + var thresholds = this.panel.color.thresholds; + if (index < 0 || index >= thresholds.length == null) { + return { + "color": "rgba(0,0,0,0)", + "value": "null", + "tooltip": "null" + }; + } + return thresholds[index]; + } + }, { + key: "roundIntervalCeil", + value: function roundIntervalCeil(interval) { + switch (true) { + case interval <= 10: + return 10; // 0.01s + case interval <= 20: + return 20; // 0.02s + case interval <= 50: + return 50; // 0.05s + case interval <= 100: + return 100; // 0.1s + case interval <= 200: + return 200; // 0.2s + case interval <= 500: + return 500; // 0.5s + case interval <= 1000: + return 1000; // 1s + case interval <= 2000: + return 2000; // 2s + case interval <= 5000: + return 5000; // 5s + case interval <= 10000: + return 10000; // 10s + case interval <= 15000: + return 15000; // 15s + case interval <= 20000: + return 20000; // 20s + case interval <= 30000: + return 30000; // 30s + case interval <= 60000: + return 60000; // 1m + case interval <= 120000: + return 120000; // 2m + case interval <= 300000: + return 300000; // 5m + case interval <= 600000: + return 600000; // 10m + case interval <= 900000: + return 900000; // 15m + case interval <= 1200000: + return 1200000; // 20m + case interval <= 1800000: + return 1800000; // 30m + case interval <= 3600000: + return 3600000; // 1h + case interval <= 7200000: + return 7200000; // 2h + case interval <= 10800000: + return 10800000; // 3h + case interval <= 21600000: + return 21600000; // 6h + case interval <= 43200000: + return 43200000; // 12h + case interval <= 86400000: + return 86400000; // 1d + case interval <= 604800000: + return 604800000; // 1w + case interval <= 2592000000: + return 2592000000; // 30d + default: + return 31536000000; // 1y + } + } + }]); + + return ColorModeDiscrete; + }()); + + _export("ColorModeDiscrete", ColorModeDiscrete); + } + }; +}); +//# sourceMappingURL=color_mode_discrete.js.map diff --git a/dist/css/status-heatmap.css b/dist/css/status-heatmap.css new file mode 100644 index 0000000..0c339ec --- /dev/null +++ b/dist/css/status-heatmap.css @@ -0,0 +1,60 @@ +.status-heatmap-canvas-wrapper { + cursor: crosshair; } + .status-heatmap-canvas-wrapper .datapoints-warning span { + background-color: white; + padding: 1px; } + +.status-heatmap-panel { + position: relative; } + .status-heatmap-panel .axis .tick text { + fill: #52545c; + color: #52545c; + font-size: 11px; } + .status-heatmap-panel .axis .tick line { + opacity: 0.4; + stroke: #767980; } + .status-heatmap-panel svg { + pointer-events: none; } + .status-heatmap-panel svg rect { + pointer-events: visiblePainted; } + +.status-heatmap-tooltip { + white-space: nowrap; + font-size: 12px; + background-color: #dde4ed; + color: #52545c; } + +.status-heatmap-histogram rect { + fill: #767980; } + +.status-heatmap-crosshair line { + stroke: #b30000; + stroke-width: 1; } + +.status-heatmap-selection { + stroke-width: 1; + fill: rgba(102, 102, 102, 0.4); + stroke: rgba(102, 102, 102, 0.8); } + +.status-heatmap-legend-wrapper { + margin: 0 10px; } + .status-heatmap-legend-wrapper svg { + height: 24px; + float: left; + white-space: nowrap; } + .status-heatmap-legend-wrapper .status-heatmap-color-legend { + margin-top: 4px; } + .status-heatmap-legend-wrapper .status-heatmap-legend-values { + display: inline-block; } + .status-heatmap-legend-wrapper .axis .tick text { + fill: #52545c; + color: #52545c; + font-size: 11px; } + .status-heatmap-legend-wrapper .axis .tick line { + opacity: 0.4; + stroke: #767980; } + .status-heatmap-legend-wrapper .axis .tick .domain { + opacity: 0.4; + stroke: #767980; } + +/*# sourceMappingURL=status-heatmap.css.map */ diff --git a/dist/css/status-heatmap.css.map b/dist/css/status-heatmap.css.map new file mode 100644 index 0000000..793b717 --- /dev/null +++ b/dist/css/status-heatmap.css.map @@ -0,0 +1,7 @@ +{ +"version": 3, +"mappings": "AAGA,8BAA+B;EAE7B,MAAM,EAAE,SAAS;EAEjB,uDAAyB;IACzB,gBAAgB,EAAE,KAAK;IACvB,OAAO,EAAE,GAAG;;AAId,qBAAsB;EACpB,QAAQ,EAAE,QAAQ;EAGhB,sCAAK;IACH,IAAI,EAAE,OAAO;IACb,KAAK,EAAE,OAAO;IACd,SAAS,EAAE,IAAI;EAGjB,sCAAK;IACH,OAAO,EAAE,GAAG;IACZ,MAAM,EAAE,OAAO;EAKnB,yBAAI;IACF,cAAc,EAAE,IAAI;IAEpB,8BAAK;MACH,cAAc,EAAE,cAAc;;AAKpC,uBAAwB;EACtB,WAAW,EAAE,MAAM;EACnB,SAAS,EAzCI,IAAI;EA0CjB,gBAAgB,EAAE,OAAO;EACzB,KAAK,EAAE,OAAO;;AAGhB,8BAA+B;EAC7B,IAAI,EAAE,OAAO;;AAIb,8BAAK;EACH,MAAM,EAAE,OAAe;EACvB,YAAY,EAAE,CAAC;;AAInB,yBAA0B;EACxB,YAAY,EAAE,CAAC;EACf,IAAI,EAAE,wBAAwB;EAC9B,MAAM,EAAE,wBAAwB;;AAGlC,8BAA+B;EAE7B,MAAM,EAAE,MAAM;EAGd,kCAAI;IAGF,MAAM,EAAE,IAAI;IACZ,KAAK,EAAE,IAAI;IACX,WAAW,EAAE,MAAM;EAIrB,2DAA6B;IAC3B,UAAU,EAAE,GAAG;EAGjB,4DAA8B;IAC5B,OAAO,EAAE,YAAY;EAIrB,+CAAK;IACH,IAAI,EAAE,OAAO;IACb,KAAK,EAAE,OAAO;IACd,SAAS,EAAE,IAAI;EAGjB,+CAAK;IACH,OAAO,EAAE,GAAG;IACZ,MAAM,EAAE,OAAO;EAGjB,kDAAQ;IACN,OAAO,EAAE,GAAG;IACZ,MAAM,EAAE,OAAO", +"sources": ["../../src/css/status-heatmap.scss"], +"names": [], +"file": "status-heatmap.css" +} diff --git a/dist/img/color-mapping.png b/dist/img/color-mapping.png new file mode 100644 index 0000000..d516267 Binary files /dev/null and b/dist/img/color-mapping.png differ diff --git a/dist/img/flant-statusmap-panel.png b/dist/img/flant-statusmap-panel.png new file mode 100644 index 0000000..8404b38 Binary files /dev/null and b/dist/img/flant-statusmap-panel.png differ diff --git a/dist/img/logo.svg b/dist/img/logo.svg new file mode 100644 index 0000000..2bedb4c --- /dev/null +++ b/dist/img/logo.svg @@ -0,0 +1,3 @@ + + + diff --git a/dist/img/min-width-spacing-rounding.png b/dist/img/min-width-spacing-rounding.png new file mode 100644 index 0000000..5cb824c Binary files /dev/null and b/dist/img/min-width-spacing-rounding.png differ diff --git a/dist/img/multiple-values-error.png b/dist/img/multiple-values-error.png new file mode 100644 index 0000000..113773b Binary files /dev/null and b/dist/img/multiple-values-error.png differ diff --git a/dist/img/null-as-empty.png b/dist/img/null-as-empty.png new file mode 100644 index 0000000..1dd3454 Binary files /dev/null and b/dist/img/null-as-empty.png differ diff --git a/dist/img/options-bucket.png b/dist/img/options-bucket.png new file mode 100644 index 0000000..177b582 Binary files /dev/null and b/dist/img/options-bucket.png differ diff --git a/dist/img/queries-example.png b/dist/img/queries-example.png new file mode 100644 index 0000000..1115ee2 Binary files /dev/null and b/dist/img/queries-example.png differ diff --git a/dist/libs/d3-scale-chromatic/categorical/Accent.js b/dist/libs/d3-scale-chromatic/categorical/Accent.js new file mode 100644 index 0000000..6b96ef4 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/categorical/Accent.js @@ -0,0 +1,16 @@ +"use strict"; + +System.register(["../colors"], function (_export, _context) { + "use strict"; + + var colors; + return { + setters: [function (_colors) { + colors = _colors.default; + }], + execute: function () { + _export("default", colors("7fc97fbeaed4fdc086ffff99386cb0f0027fbf5b17666666")); + } + }; +}); +//# sourceMappingURL=Accent.js.map diff --git a/dist/libs/d3-scale-chromatic/categorical/Accent.js.map b/dist/libs/d3-scale-chromatic/categorical/Accent.js.map new file mode 100644 index 0000000..44173f7 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/categorical/Accent.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/categorical/Accent.js"],"names":["colors"],"mappings":";;;;;;;;AAAOA,Y;;;yBAEQA,OAAO,kDAAP,C","file":"Accent.js","sourcesContent":["import colors from \"../colors\";\n\nexport default colors(\"7fc97fbeaed4fdc086ffff99386cb0f0027fbf5b17666666\");\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/categorical/Dark2.js b/dist/libs/d3-scale-chromatic/categorical/Dark2.js new file mode 100644 index 0000000..f72816a --- /dev/null +++ b/dist/libs/d3-scale-chromatic/categorical/Dark2.js @@ -0,0 +1,16 @@ +"use strict"; + +System.register(["../colors"], function (_export, _context) { + "use strict"; + + var colors; + return { + setters: [function (_colors) { + colors = _colors.default; + }], + execute: function () { + _export("default", colors("1b9e77d95f027570b3e7298a66a61ee6ab02a6761d666666")); + } + }; +}); +//# sourceMappingURL=Dark2.js.map diff --git a/dist/libs/d3-scale-chromatic/categorical/Dark2.js.map b/dist/libs/d3-scale-chromatic/categorical/Dark2.js.map new file mode 100644 index 0000000..273e762 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/categorical/Dark2.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/categorical/Dark2.js"],"names":["colors"],"mappings":";;;;;;;;AAAOA,Y;;;yBAEQA,OAAO,kDAAP,C","file":"Dark2.js","sourcesContent":["import colors from \"../colors\";\n\nexport default colors(\"1b9e77d95f027570b3e7298a66a61ee6ab02a6761d666666\");\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/categorical/Paired.js b/dist/libs/d3-scale-chromatic/categorical/Paired.js new file mode 100644 index 0000000..5757682 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/categorical/Paired.js @@ -0,0 +1,16 @@ +"use strict"; + +System.register(["../colors"], function (_export, _context) { + "use strict"; + + var colors; + return { + setters: [function (_colors) { + colors = _colors.default; + }], + execute: function () { + _export("default", colors("a6cee31f78b4b2df8a33a02cfb9a99e31a1cfdbf6fff7f00cab2d66a3d9affff99b15928")); + } + }; +}); +//# sourceMappingURL=Paired.js.map diff --git a/dist/libs/d3-scale-chromatic/categorical/Paired.js.map b/dist/libs/d3-scale-chromatic/categorical/Paired.js.map new file mode 100644 index 0000000..26ebc51 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/categorical/Paired.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/categorical/Paired.js"],"names":["colors"],"mappings":";;;;;;;;AAAOA,Y;;;yBAEQA,OAAO,0EAAP,C","file":"Paired.js","sourcesContent":["import colors from \"../colors\";\n\nexport default colors(\"a6cee31f78b4b2df8a33a02cfb9a99e31a1cfdbf6fff7f00cab2d66a3d9affff99b15928\");\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/categorical/Pastel1.js b/dist/libs/d3-scale-chromatic/categorical/Pastel1.js new file mode 100644 index 0000000..cca697a --- /dev/null +++ b/dist/libs/d3-scale-chromatic/categorical/Pastel1.js @@ -0,0 +1,16 @@ +"use strict"; + +System.register(["../colors"], function (_export, _context) { + "use strict"; + + var colors; + return { + setters: [function (_colors) { + colors = _colors.default; + }], + execute: function () { + _export("default", colors("fbb4aeb3cde3ccebc5decbe4fed9a6ffffcce5d8bdfddaecf2f2f2")); + } + }; +}); +//# sourceMappingURL=Pastel1.js.map diff --git a/dist/libs/d3-scale-chromatic/categorical/Pastel1.js.map b/dist/libs/d3-scale-chromatic/categorical/Pastel1.js.map new file mode 100644 index 0000000..be35100 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/categorical/Pastel1.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/categorical/Pastel1.js"],"names":["colors"],"mappings":";;;;;;;;AAAOA,Y;;;yBAEQA,OAAO,wDAAP,C","file":"Pastel1.js","sourcesContent":["import colors from \"../colors\";\n\nexport default colors(\"fbb4aeb3cde3ccebc5decbe4fed9a6ffffcce5d8bdfddaecf2f2f2\");\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/categorical/Pastel2.js b/dist/libs/d3-scale-chromatic/categorical/Pastel2.js new file mode 100644 index 0000000..90cfe91 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/categorical/Pastel2.js @@ -0,0 +1,16 @@ +"use strict"; + +System.register(["../colors"], function (_export, _context) { + "use strict"; + + var colors; + return { + setters: [function (_colors) { + colors = _colors.default; + }], + execute: function () { + _export("default", colors("b3e2cdfdcdaccbd5e8f4cae4e6f5c9fff2aef1e2cccccccc")); + } + }; +}); +//# sourceMappingURL=Pastel2.js.map diff --git a/dist/libs/d3-scale-chromatic/categorical/Pastel2.js.map b/dist/libs/d3-scale-chromatic/categorical/Pastel2.js.map new file mode 100644 index 0000000..1507a53 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/categorical/Pastel2.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/categorical/Pastel2.js"],"names":["colors"],"mappings":";;;;;;;;AAAOA,Y;;;yBAEQA,OAAO,kDAAP,C","file":"Pastel2.js","sourcesContent":["import colors from \"../colors\";\n\nexport default colors(\"b3e2cdfdcdaccbd5e8f4cae4e6f5c9fff2aef1e2cccccccc\");\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/categorical/Set1.js b/dist/libs/d3-scale-chromatic/categorical/Set1.js new file mode 100644 index 0000000..695f584 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/categorical/Set1.js @@ -0,0 +1,16 @@ +"use strict"; + +System.register(["../colors"], function (_export, _context) { + "use strict"; + + var colors; + return { + setters: [function (_colors) { + colors = _colors.default; + }], + execute: function () { + _export("default", colors("e41a1c377eb84daf4a984ea3ff7f00ffff33a65628f781bf999999")); + } + }; +}); +//# sourceMappingURL=Set1.js.map diff --git a/dist/libs/d3-scale-chromatic/categorical/Set1.js.map b/dist/libs/d3-scale-chromatic/categorical/Set1.js.map new file mode 100644 index 0000000..75f5cb9 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/categorical/Set1.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/categorical/Set1.js"],"names":["colors"],"mappings":";;;;;;;;AAAOA,Y;;;yBAEQA,OAAO,wDAAP,C","file":"Set1.js","sourcesContent":["import colors from \"../colors\";\n\nexport default colors(\"e41a1c377eb84daf4a984ea3ff7f00ffff33a65628f781bf999999\");\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/categorical/Set2.js b/dist/libs/d3-scale-chromatic/categorical/Set2.js new file mode 100644 index 0000000..e0243ab --- /dev/null +++ b/dist/libs/d3-scale-chromatic/categorical/Set2.js @@ -0,0 +1,16 @@ +"use strict"; + +System.register(["../colors"], function (_export, _context) { + "use strict"; + + var colors; + return { + setters: [function (_colors) { + colors = _colors.default; + }], + execute: function () { + _export("default", colors("66c2a5fc8d628da0cbe78ac3a6d854ffd92fe5c494b3b3b3")); + } + }; +}); +//# sourceMappingURL=Set2.js.map diff --git a/dist/libs/d3-scale-chromatic/categorical/Set2.js.map b/dist/libs/d3-scale-chromatic/categorical/Set2.js.map new file mode 100644 index 0000000..7cd9e42 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/categorical/Set2.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/categorical/Set2.js"],"names":["colors"],"mappings":";;;;;;;;AAAOA,Y;;;yBAEQA,OAAO,kDAAP,C","file":"Set2.js","sourcesContent":["import colors from \"../colors\";\n\nexport default colors(\"66c2a5fc8d628da0cbe78ac3a6d854ffd92fe5c494b3b3b3\");\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/categorical/Set3.js b/dist/libs/d3-scale-chromatic/categorical/Set3.js new file mode 100644 index 0000000..aec6b3d --- /dev/null +++ b/dist/libs/d3-scale-chromatic/categorical/Set3.js @@ -0,0 +1,16 @@ +"use strict"; + +System.register(["../colors"], function (_export, _context) { + "use strict"; + + var colors; + return { + setters: [function (_colors) { + colors = _colors.default; + }], + execute: function () { + _export("default", colors("8dd3c7ffffb3bebadafb807280b1d3fdb462b3de69fccde5d9d9d9bc80bdccebc5ffed6f")); + } + }; +}); +//# sourceMappingURL=Set3.js.map diff --git a/dist/libs/d3-scale-chromatic/categorical/Set3.js.map b/dist/libs/d3-scale-chromatic/categorical/Set3.js.map new file mode 100644 index 0000000..1fe408c --- /dev/null +++ b/dist/libs/d3-scale-chromatic/categorical/Set3.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/categorical/Set3.js"],"names":["colors"],"mappings":";;;;;;;;AAAOA,Y;;;yBAEQA,OAAO,0EAAP,C","file":"Set3.js","sourcesContent":["import colors from \"../colors\";\n\nexport default colors(\"8dd3c7ffffb3bebadafb807280b1d3fdb462b3de69fccde5d9d9d9bc80bdccebc5ffed6f\");\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/colors.js b/dist/libs/d3-scale-chromatic/colors.js new file mode 100644 index 0000000..c81f52c --- /dev/null +++ b/dist/libs/d3-scale-chromatic/colors.js @@ -0,0 +1,20 @@ +"use strict"; + +System.register([], function (_export, _context) { + "use strict"; + + _export("default", function (specifier) { + var n = specifier.length / 6 | 0, + colors = new Array(n), + i = 0; + while (i < n) { + colors[i] = "#" + specifier.slice(i * 6, ++i * 6); + }return colors; + }); + + return { + setters: [], + execute: function () {} + }; +}); +//# sourceMappingURL=colors.js.map diff --git a/dist/libs/d3-scale-chromatic/colors.js.map b/dist/libs/d3-scale-chromatic/colors.js.map new file mode 100644 index 0000000..a5aaacc --- /dev/null +++ b/dist/libs/d3-scale-chromatic/colors.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/libs/d3-scale-chromatic/colors.js"],"names":["specifier","n","length","colors","Array","i","slice"],"mappings":";;;;;qBAAe,UAASA,SAAT,EAAoB;AACjC,QAAIC,IAAID,UAAUE,MAAV,GAAmB,CAAnB,GAAuB,CAA/B;AAAA,QAAkCC,SAAS,IAAIC,KAAJ,CAAUH,CAAV,CAA3C;AAAA,QAAyDI,IAAI,CAA7D;AACA,WAAOA,IAAIJ,CAAX;AAAcE,aAAOE,CAAP,IAAY,MAAML,UAAUM,KAAV,CAAgBD,IAAI,CAApB,EAAuB,EAAEA,CAAF,GAAM,CAA7B,CAAlB;AAAd,KACA,OAAOF,MAAP;AACD,G","file":"colors.js","sourcesContent":["export default function(specifier) {\n var n = specifier.length / 6 | 0, colors = new Array(n), i = 0;\n while (i < n) colors[i] = \"#\" + specifier.slice(i * 6, ++i * 6);\n return colors;\n}\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/diverging/BrBG.js b/dist/libs/d3-scale-chromatic/diverging/BrBG.js new file mode 100644 index 0000000..38ca058 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/diverging/BrBG.js @@ -0,0 +1,22 @@ +"use strict"; + +System.register(["../colors", "../ramp"], function (_export, _context) { + "use strict"; + + var colors, ramp, scheme; + return { + setters: [function (_colors) { + colors = _colors.default; + }, function (_ramp) { + ramp = _ramp.default; + }], + execute: function () { + _export("scheme", scheme = new Array(3).concat("d8b365f5f5f55ab4ac", "a6611adfc27d80cdc1018571", "a6611adfc27df5f5f580cdc1018571", "8c510ad8b365f6e8c3c7eae55ab4ac01665e", "8c510ad8b365f6e8c3f5f5f5c7eae55ab4ac01665e", "8c510abf812ddfc27df6e8c3c7eae580cdc135978f01665e", "8c510abf812ddfc27df6e8c3f5f5f5c7eae580cdc135978f01665e", "5430058c510abf812ddfc27df6e8c3c7eae580cdc135978f01665e003c30", "5430058c510abf812ddfc27df6e8c3f5f5f5c7eae580cdc135978f01665e003c30").map(colors)); + + _export("scheme", scheme); + + _export("default", ramp(scheme)); + } + }; +}); +//# sourceMappingURL=BrBG.js.map diff --git a/dist/libs/d3-scale-chromatic/diverging/BrBG.js.map b/dist/libs/d3-scale-chromatic/diverging/BrBG.js.map new file mode 100644 index 0000000..6d7017e --- /dev/null +++ b/dist/libs/d3-scale-chromatic/diverging/BrBG.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/diverging/BrBG.js"],"names":["colors","ramp","scheme","Array","concat","map"],"mappings":";;;;;;;;AAAOA,Y;;AACAC,U;;;wBAEIC,M,GAAS,IAAIC,KAAJ,CAAU,CAAV,EAAaC,MAAb,CAClB,oBADkB,EAElB,0BAFkB,EAGlB,gCAHkB,EAIlB,sCAJkB,EAKlB,4CALkB,EAMlB,kDANkB,EAOlB,wDAPkB,EAQlB,8DARkB,EASlB,oEATkB,EAUlBC,GAVkB,CAUdL,MAVc,C;;;;yBAYLC,KAAKC,MAAL,C","file":"BrBG.js","sourcesContent":["import colors from \"../colors\";\nimport ramp from \"../ramp\";\n\nexport var scheme = new Array(3).concat(\n \"d8b365f5f5f55ab4ac\",\n \"a6611adfc27d80cdc1018571\",\n \"a6611adfc27df5f5f580cdc1018571\",\n \"8c510ad8b365f6e8c3c7eae55ab4ac01665e\",\n \"8c510ad8b365f6e8c3f5f5f5c7eae55ab4ac01665e\",\n \"8c510abf812ddfc27df6e8c3c7eae580cdc135978f01665e\",\n \"8c510abf812ddfc27df6e8c3f5f5f5c7eae580cdc135978f01665e\",\n \"5430058c510abf812ddfc27df6e8c3c7eae580cdc135978f01665e003c30\",\n \"5430058c510abf812ddfc27df6e8c3f5f5f5c7eae580cdc135978f01665e003c30\"\n).map(colors);\n\nexport default ramp(scheme);\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/diverging/GnYlRd.js b/dist/libs/d3-scale-chromatic/diverging/GnYlRd.js new file mode 100644 index 0000000..57ac244 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/diverging/GnYlRd.js @@ -0,0 +1,22 @@ +"use strict"; + +System.register(["../colors", "../ramp"], function (_export, _context) { + "use strict"; + + var colors, ramp, scheme; + return { + setters: [function (_colors) { + colors = _colors.default; + }, function (_ramp) { + ramp = _ramp.default; + }], + execute: function () { + _export("scheme", scheme = new Array(3).concat("91cf60ffffbffc8d59", "1a9641a6d96afdae61d7191c", "1a9641a6d96affffbffdae61d7191c", "1a985091cf60d9ef8bfee08bfc8d59d73027", "1a985091cf60d9ef8bffffbffee08bfc8d59d73027", "1a985066bd63a6d96ad9ef8bfee08bfdae61f46d43d73027", "1a985066bd63a6d96ad9ef8bffffbffee08bfdae61f46d43d73027", "0068371a985066bd63a6d96ad9ef8bfee08bfdae61f46d43d73027a50026", "0068371a985066bd63a6d96ad9ef8bffffbffee08bfdae61f46d43d73027a50026").map(colors)); + + _export("scheme", scheme); + + _export("default", ramp(scheme)); + } + }; +}); +//# sourceMappingURL=GnYlRd.js.map diff --git a/dist/libs/d3-scale-chromatic/diverging/GnYlRd.js.map b/dist/libs/d3-scale-chromatic/diverging/GnYlRd.js.map new file mode 100644 index 0000000..c748b5f --- /dev/null +++ b/dist/libs/d3-scale-chromatic/diverging/GnYlRd.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/diverging/GnYlRd.js"],"names":["colors","ramp","scheme","Array","concat","map"],"mappings":";;;;;;;;AAAOA,Y;;AACAC,U;;;wBAEIC,M,GAAS,IAAIC,KAAJ,CAAU,CAAV,EAAaC,MAAb,CAClB,oBADkB,EAElB,0BAFkB,EAGlB,gCAHkB,EAIlB,sCAJkB,EAKlB,4CALkB,EAMlB,kDANkB,EAOlB,wDAPkB,EAQlB,8DARkB,EASlB,oEATkB,EAUlBC,GAVkB,CAUdL,MAVc,C;;;;yBAYLC,KAAKC,MAAL,C","file":"GnYlRd.js","sourcesContent":["import colors from \"../colors\";\nimport ramp from \"../ramp\";\n\nexport var scheme = new Array(3).concat(\n \"91cf60ffffbffc8d59\",\n \"1a9641a6d96afdae61d7191c\",\n \"1a9641a6d96affffbffdae61d7191c\",\n \"1a985091cf60d9ef8bfee08bfc8d59d73027\",\n \"1a985091cf60d9ef8bffffbffee08bfc8d59d73027\",\n \"1a985066bd63a6d96ad9ef8bfee08bfdae61f46d43d73027\",\n \"1a985066bd63a6d96ad9ef8bffffbffee08bfdae61f46d43d73027\",\n \"0068371a985066bd63a6d96ad9ef8bfee08bfdae61f46d43d73027a50026\",\n \"0068371a985066bd63a6d96ad9ef8bffffbffee08bfdae61f46d43d73027a50026\"\n).map(colors);\n\nexport default ramp(scheme);\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/diverging/PRGn.js b/dist/libs/d3-scale-chromatic/diverging/PRGn.js new file mode 100644 index 0000000..0ac6052 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/diverging/PRGn.js @@ -0,0 +1,22 @@ +"use strict"; + +System.register(["../colors", "../ramp"], function (_export, _context) { + "use strict"; + + var colors, ramp, scheme; + return { + setters: [function (_colors) { + colors = _colors.default; + }, function (_ramp) { + ramp = _ramp.default; + }], + execute: function () { + _export("scheme", scheme = new Array(3).concat("af8dc3f7f7f77fbf7b", "7b3294c2a5cfa6dba0008837", "7b3294c2a5cff7f7f7a6dba0008837", "762a83af8dc3e7d4e8d9f0d37fbf7b1b7837", "762a83af8dc3e7d4e8f7f7f7d9f0d37fbf7b1b7837", "762a839970abc2a5cfe7d4e8d9f0d3a6dba05aae611b7837", "762a839970abc2a5cfe7d4e8f7f7f7d9f0d3a6dba05aae611b7837", "40004b762a839970abc2a5cfe7d4e8d9f0d3a6dba05aae611b783700441b", "40004b762a839970abc2a5cfe7d4e8f7f7f7d9f0d3a6dba05aae611b783700441b").map(colors)); + + _export("scheme", scheme); + + _export("default", ramp(scheme)); + } + }; +}); +//# sourceMappingURL=PRGn.js.map diff --git a/dist/libs/d3-scale-chromatic/diverging/PRGn.js.map b/dist/libs/d3-scale-chromatic/diverging/PRGn.js.map new file mode 100644 index 0000000..2b7d689 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/diverging/PRGn.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/diverging/PRGn.js"],"names":["colors","ramp","scheme","Array","concat","map"],"mappings":";;;;;;;;AAAOA,Y;;AACAC,U;;;wBAEIC,M,GAAS,IAAIC,KAAJ,CAAU,CAAV,EAAaC,MAAb,CAClB,oBADkB,EAElB,0BAFkB,EAGlB,gCAHkB,EAIlB,sCAJkB,EAKlB,4CALkB,EAMlB,kDANkB,EAOlB,wDAPkB,EAQlB,8DARkB,EASlB,oEATkB,EAUlBC,GAVkB,CAUdL,MAVc,C;;;;yBAYLC,KAAKC,MAAL,C","file":"PRGn.js","sourcesContent":["import colors from \"../colors\";\nimport ramp from \"../ramp\";\n\nexport var scheme = new Array(3).concat(\n \"af8dc3f7f7f77fbf7b\",\n \"7b3294c2a5cfa6dba0008837\",\n \"7b3294c2a5cff7f7f7a6dba0008837\",\n \"762a83af8dc3e7d4e8d9f0d37fbf7b1b7837\",\n \"762a83af8dc3e7d4e8f7f7f7d9f0d37fbf7b1b7837\",\n \"762a839970abc2a5cfe7d4e8d9f0d3a6dba05aae611b7837\",\n \"762a839970abc2a5cfe7d4e8f7f7f7d9f0d3a6dba05aae611b7837\",\n \"40004b762a839970abc2a5cfe7d4e8d9f0d3a6dba05aae611b783700441b\",\n \"40004b762a839970abc2a5cfe7d4e8f7f7f7d9f0d3a6dba05aae611b783700441b\"\n).map(colors);\n\nexport default ramp(scheme);\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/diverging/PiYG.js b/dist/libs/d3-scale-chromatic/diverging/PiYG.js new file mode 100644 index 0000000..b7a5730 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/diverging/PiYG.js @@ -0,0 +1,22 @@ +"use strict"; + +System.register(["../colors", "../ramp"], function (_export, _context) { + "use strict"; + + var colors, ramp, scheme; + return { + setters: [function (_colors) { + colors = _colors.default; + }, function (_ramp) { + ramp = _ramp.default; + }], + execute: function () { + _export("scheme", scheme = new Array(3).concat("e9a3c9f7f7f7a1d76a", "d01c8bf1b6dab8e1864dac26", "d01c8bf1b6daf7f7f7b8e1864dac26", "c51b7de9a3c9fde0efe6f5d0a1d76a4d9221", "c51b7de9a3c9fde0eff7f7f7e6f5d0a1d76a4d9221", "c51b7dde77aef1b6dafde0efe6f5d0b8e1867fbc414d9221", "c51b7dde77aef1b6dafde0eff7f7f7e6f5d0b8e1867fbc414d9221", "8e0152c51b7dde77aef1b6dafde0efe6f5d0b8e1867fbc414d9221276419", "8e0152c51b7dde77aef1b6dafde0eff7f7f7e6f5d0b8e1867fbc414d9221276419").map(colors)); + + _export("scheme", scheme); + + _export("default", ramp(scheme)); + } + }; +}); +//# sourceMappingURL=PiYG.js.map diff --git a/dist/libs/d3-scale-chromatic/diverging/PiYG.js.map b/dist/libs/d3-scale-chromatic/diverging/PiYG.js.map new file mode 100644 index 0000000..e100822 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/diverging/PiYG.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/diverging/PiYG.js"],"names":["colors","ramp","scheme","Array","concat","map"],"mappings":";;;;;;;;AAAOA,Y;;AACAC,U;;;wBAEIC,M,GAAS,IAAIC,KAAJ,CAAU,CAAV,EAAaC,MAAb,CAClB,oBADkB,EAElB,0BAFkB,EAGlB,gCAHkB,EAIlB,sCAJkB,EAKlB,4CALkB,EAMlB,kDANkB,EAOlB,wDAPkB,EAQlB,8DARkB,EASlB,oEATkB,EAUlBC,GAVkB,CAUdL,MAVc,C;;;;yBAYLC,KAAKC,MAAL,C","file":"PiYG.js","sourcesContent":["import colors from \"../colors\";\nimport ramp from \"../ramp\";\n\nexport var scheme = new Array(3).concat(\n \"e9a3c9f7f7f7a1d76a\",\n \"d01c8bf1b6dab8e1864dac26\",\n \"d01c8bf1b6daf7f7f7b8e1864dac26\",\n \"c51b7de9a3c9fde0efe6f5d0a1d76a4d9221\",\n \"c51b7de9a3c9fde0eff7f7f7e6f5d0a1d76a4d9221\",\n \"c51b7dde77aef1b6dafde0efe6f5d0b8e1867fbc414d9221\",\n \"c51b7dde77aef1b6dafde0eff7f7f7e6f5d0b8e1867fbc414d9221\",\n \"8e0152c51b7dde77aef1b6dafde0efe6f5d0b8e1867fbc414d9221276419\",\n \"8e0152c51b7dde77aef1b6dafde0eff7f7f7e6f5d0b8e1867fbc414d9221276419\"\n).map(colors);\n\nexport default ramp(scheme);\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/diverging/PuOr.js b/dist/libs/d3-scale-chromatic/diverging/PuOr.js new file mode 100644 index 0000000..38947cb --- /dev/null +++ b/dist/libs/d3-scale-chromatic/diverging/PuOr.js @@ -0,0 +1,22 @@ +"use strict"; + +System.register(["../colors", "../ramp"], function (_export, _context) { + "use strict"; + + var colors, ramp, scheme; + return { + setters: [function (_colors) { + colors = _colors.default; + }, function (_ramp) { + ramp = _ramp.default; + }], + execute: function () { + _export("scheme", scheme = new Array(3).concat("998ec3f7f7f7f1a340", "5e3c99b2abd2fdb863e66101", "5e3c99b2abd2f7f7f7fdb863e66101", "542788998ec3d8daebfee0b6f1a340b35806", "542788998ec3d8daebf7f7f7fee0b6f1a340b35806", "5427888073acb2abd2d8daebfee0b6fdb863e08214b35806", "5427888073acb2abd2d8daebf7f7f7fee0b6fdb863e08214b35806", "2d004b5427888073acb2abd2d8daebfee0b6fdb863e08214b358067f3b08", "2d004b5427888073acb2abd2d8daebf7f7f7fee0b6fdb863e08214b358067f3b08").map(colors)); + + _export("scheme", scheme); + + _export("default", ramp(scheme)); + } + }; +}); +//# sourceMappingURL=PuOr.js.map diff --git a/dist/libs/d3-scale-chromatic/diverging/PuOr.js.map b/dist/libs/d3-scale-chromatic/diverging/PuOr.js.map new file mode 100644 index 0000000..8986984 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/diverging/PuOr.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/diverging/PuOr.js"],"names":["colors","ramp","scheme","Array","concat","map"],"mappings":";;;;;;;;AAAOA,Y;;AACAC,U;;;wBAEIC,M,GAAS,IAAIC,KAAJ,CAAU,CAAV,EAAaC,MAAb,CAClB,oBADkB,EAElB,0BAFkB,EAGlB,gCAHkB,EAIlB,sCAJkB,EAKlB,4CALkB,EAMlB,kDANkB,EAOlB,wDAPkB,EAQlB,8DARkB,EASlB,oEATkB,EAUlBC,GAVkB,CAUdL,MAVc,C;;;;yBAYLC,KAAKC,MAAL,C","file":"PuOr.js","sourcesContent":["import colors from \"../colors\";\nimport ramp from \"../ramp\";\n\nexport var scheme = new Array(3).concat(\n \"998ec3f7f7f7f1a340\",\n \"5e3c99b2abd2fdb863e66101\",\n \"5e3c99b2abd2f7f7f7fdb863e66101\",\n \"542788998ec3d8daebfee0b6f1a340b35806\",\n \"542788998ec3d8daebf7f7f7fee0b6f1a340b35806\",\n \"5427888073acb2abd2d8daebfee0b6fdb863e08214b35806\",\n \"5427888073acb2abd2d8daebf7f7f7fee0b6fdb863e08214b35806\",\n \"2d004b5427888073acb2abd2d8daebfee0b6fdb863e08214b358067f3b08\",\n \"2d004b5427888073acb2abd2d8daebf7f7f7fee0b6fdb863e08214b358067f3b08\"\n).map(colors);\n\nexport default ramp(scheme);\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/diverging/RdBu.js b/dist/libs/d3-scale-chromatic/diverging/RdBu.js new file mode 100644 index 0000000..fe9be5c --- /dev/null +++ b/dist/libs/d3-scale-chromatic/diverging/RdBu.js @@ -0,0 +1,22 @@ +"use strict"; + +System.register(["../colors", "../ramp"], function (_export, _context) { + "use strict"; + + var colors, ramp, scheme; + return { + setters: [function (_colors) { + colors = _colors.default; + }, function (_ramp) { + ramp = _ramp.default; + }], + execute: function () { + _export("scheme", scheme = new Array(3).concat("ef8a62f7f7f767a9cf", "ca0020f4a58292c5de0571b0", "ca0020f4a582f7f7f792c5de0571b0", "b2182bef8a62fddbc7d1e5f067a9cf2166ac", "b2182bef8a62fddbc7f7f7f7d1e5f067a9cf2166ac", "b2182bd6604df4a582fddbc7d1e5f092c5de4393c32166ac", "b2182bd6604df4a582fddbc7f7f7f7d1e5f092c5de4393c32166ac", "67001fb2182bd6604df4a582fddbc7d1e5f092c5de4393c32166ac053061", "67001fb2182bd6604df4a582fddbc7f7f7f7d1e5f092c5de4393c32166ac053061").map(colors)); + + _export("scheme", scheme); + + _export("default", ramp(scheme)); + } + }; +}); +//# sourceMappingURL=RdBu.js.map diff --git a/dist/libs/d3-scale-chromatic/diverging/RdBu.js.map b/dist/libs/d3-scale-chromatic/diverging/RdBu.js.map new file mode 100644 index 0000000..1470841 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/diverging/RdBu.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/diverging/RdBu.js"],"names":["colors","ramp","scheme","Array","concat","map"],"mappings":";;;;;;;;AAAOA,Y;;AACAC,U;;;wBAEIC,M,GAAS,IAAIC,KAAJ,CAAU,CAAV,EAAaC,MAAb,CAClB,oBADkB,EAElB,0BAFkB,EAGlB,gCAHkB,EAIlB,sCAJkB,EAKlB,4CALkB,EAMlB,kDANkB,EAOlB,wDAPkB,EAQlB,8DARkB,EASlB,oEATkB,EAUlBC,GAVkB,CAUdL,MAVc,C;;;;yBAYLC,KAAKC,MAAL,C","file":"RdBu.js","sourcesContent":["import colors from \"../colors\";\nimport ramp from \"../ramp\";\n\nexport var scheme = new Array(3).concat(\n \"ef8a62f7f7f767a9cf\",\n \"ca0020f4a58292c5de0571b0\",\n \"ca0020f4a582f7f7f792c5de0571b0\",\n \"b2182bef8a62fddbc7d1e5f067a9cf2166ac\",\n \"b2182bef8a62fddbc7f7f7f7d1e5f067a9cf2166ac\",\n \"b2182bd6604df4a582fddbc7d1e5f092c5de4393c32166ac\",\n \"b2182bd6604df4a582fddbc7f7f7f7d1e5f092c5de4393c32166ac\",\n \"67001fb2182bd6604df4a582fddbc7d1e5f092c5de4393c32166ac053061\",\n \"67001fb2182bd6604df4a582fddbc7f7f7f7d1e5f092c5de4393c32166ac053061\"\n).map(colors);\n\nexport default ramp(scheme);\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/diverging/RdGy.js b/dist/libs/d3-scale-chromatic/diverging/RdGy.js new file mode 100644 index 0000000..46bf6fa --- /dev/null +++ b/dist/libs/d3-scale-chromatic/diverging/RdGy.js @@ -0,0 +1,22 @@ +"use strict"; + +System.register(["../colors", "../ramp"], function (_export, _context) { + "use strict"; + + var colors, ramp, scheme; + return { + setters: [function (_colors) { + colors = _colors.default; + }, function (_ramp) { + ramp = _ramp.default; + }], + execute: function () { + _export("scheme", scheme = new Array(3).concat("ef8a62ffffff999999", "ca0020f4a582bababa404040", "ca0020f4a582ffffffbababa404040", "b2182bef8a62fddbc7e0e0e09999994d4d4d", "b2182bef8a62fddbc7ffffffe0e0e09999994d4d4d", "b2182bd6604df4a582fddbc7e0e0e0bababa8787874d4d4d", "b2182bd6604df4a582fddbc7ffffffe0e0e0bababa8787874d4d4d", "67001fb2182bd6604df4a582fddbc7e0e0e0bababa8787874d4d4d1a1a1a", "67001fb2182bd6604df4a582fddbc7ffffffe0e0e0bababa8787874d4d4d1a1a1a").map(colors)); + + _export("scheme", scheme); + + _export("default", ramp(scheme)); + } + }; +}); +//# sourceMappingURL=RdGy.js.map diff --git a/dist/libs/d3-scale-chromatic/diverging/RdGy.js.map b/dist/libs/d3-scale-chromatic/diverging/RdGy.js.map new file mode 100644 index 0000000..df3ebe5 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/diverging/RdGy.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/diverging/RdGy.js"],"names":["colors","ramp","scheme","Array","concat","map"],"mappings":";;;;;;;;AAAOA,Y;;AACAC,U;;;wBAEIC,M,GAAS,IAAIC,KAAJ,CAAU,CAAV,EAAaC,MAAb,CAClB,oBADkB,EAElB,0BAFkB,EAGlB,gCAHkB,EAIlB,sCAJkB,EAKlB,4CALkB,EAMlB,kDANkB,EAOlB,wDAPkB,EAQlB,8DARkB,EASlB,oEATkB,EAUlBC,GAVkB,CAUdL,MAVc,C;;;;yBAYLC,KAAKC,MAAL,C","file":"RdGy.js","sourcesContent":["import colors from \"../colors\";\nimport ramp from \"../ramp\";\n\nexport var scheme = new Array(3).concat(\n \"ef8a62ffffff999999\",\n \"ca0020f4a582bababa404040\",\n \"ca0020f4a582ffffffbababa404040\",\n \"b2182bef8a62fddbc7e0e0e09999994d4d4d\",\n \"b2182bef8a62fddbc7ffffffe0e0e09999994d4d4d\",\n \"b2182bd6604df4a582fddbc7e0e0e0bababa8787874d4d4d\",\n \"b2182bd6604df4a582fddbc7ffffffe0e0e0bababa8787874d4d4d\",\n \"67001fb2182bd6604df4a582fddbc7e0e0e0bababa8787874d4d4d1a1a1a\",\n \"67001fb2182bd6604df4a582fddbc7ffffffe0e0e0bababa8787874d4d4d1a1a1a\"\n).map(colors);\n\nexport default ramp(scheme);\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/diverging/RdYlBu.js b/dist/libs/d3-scale-chromatic/diverging/RdYlBu.js new file mode 100644 index 0000000..19656d3 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/diverging/RdYlBu.js @@ -0,0 +1,22 @@ +"use strict"; + +System.register(["../colors", "../ramp"], function (_export, _context) { + "use strict"; + + var colors, ramp, scheme; + return { + setters: [function (_colors) { + colors = _colors.default; + }, function (_ramp) { + ramp = _ramp.default; + }], + execute: function () { + _export("scheme", scheme = new Array(3).concat("fc8d59ffffbf91bfdb", "d7191cfdae61abd9e92c7bb6", "d7191cfdae61ffffbfabd9e92c7bb6", "d73027fc8d59fee090e0f3f891bfdb4575b4", "d73027fc8d59fee090ffffbfe0f3f891bfdb4575b4", "d73027f46d43fdae61fee090e0f3f8abd9e974add14575b4", "d73027f46d43fdae61fee090ffffbfe0f3f8abd9e974add14575b4", "a50026d73027f46d43fdae61fee090e0f3f8abd9e974add14575b4313695", "a50026d73027f46d43fdae61fee090ffffbfe0f3f8abd9e974add14575b4313695").map(colors)); + + _export("scheme", scheme); + + _export("default", ramp(scheme)); + } + }; +}); +//# sourceMappingURL=RdYlBu.js.map diff --git a/dist/libs/d3-scale-chromatic/diverging/RdYlBu.js.map b/dist/libs/d3-scale-chromatic/diverging/RdYlBu.js.map new file mode 100644 index 0000000..076a24c --- /dev/null +++ b/dist/libs/d3-scale-chromatic/diverging/RdYlBu.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/diverging/RdYlBu.js"],"names":["colors","ramp","scheme","Array","concat","map"],"mappings":";;;;;;;;AAAOA,Y;;AACAC,U;;;wBAEIC,M,GAAS,IAAIC,KAAJ,CAAU,CAAV,EAAaC,MAAb,CAClB,oBADkB,EAElB,0BAFkB,EAGlB,gCAHkB,EAIlB,sCAJkB,EAKlB,4CALkB,EAMlB,kDANkB,EAOlB,wDAPkB,EAQlB,8DARkB,EASlB,oEATkB,EAUlBC,GAVkB,CAUdL,MAVc,C;;;;yBAYLC,KAAKC,MAAL,C","file":"RdYlBu.js","sourcesContent":["import colors from \"../colors\";\nimport ramp from \"../ramp\";\n\nexport var scheme = new Array(3).concat(\n \"fc8d59ffffbf91bfdb\",\n \"d7191cfdae61abd9e92c7bb6\",\n \"d7191cfdae61ffffbfabd9e92c7bb6\",\n \"d73027fc8d59fee090e0f3f891bfdb4575b4\",\n \"d73027fc8d59fee090ffffbfe0f3f891bfdb4575b4\",\n \"d73027f46d43fdae61fee090e0f3f8abd9e974add14575b4\",\n \"d73027f46d43fdae61fee090ffffbfe0f3f8abd9e974add14575b4\",\n \"a50026d73027f46d43fdae61fee090e0f3f8abd9e974add14575b4313695\",\n \"a50026d73027f46d43fdae61fee090ffffbfe0f3f8abd9e974add14575b4313695\"\n).map(colors);\n\nexport default ramp(scheme);\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/diverging/RdYlGn.js b/dist/libs/d3-scale-chromatic/diverging/RdYlGn.js new file mode 100644 index 0000000..457e919 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/diverging/RdYlGn.js @@ -0,0 +1,22 @@ +"use strict"; + +System.register(["../colors", "../ramp"], function (_export, _context) { + "use strict"; + + var colors, ramp, scheme; + return { + setters: [function (_colors) { + colors = _colors.default; + }, function (_ramp) { + ramp = _ramp.default; + }], + execute: function () { + _export("scheme", scheme = new Array(3).concat("fc8d59ffffbf91cf60", "d7191cfdae61a6d96a1a9641", "d7191cfdae61ffffbfa6d96a1a9641", "d73027fc8d59fee08bd9ef8b91cf601a9850", "d73027fc8d59fee08bffffbfd9ef8b91cf601a9850", "d73027f46d43fdae61fee08bd9ef8ba6d96a66bd631a9850", "d73027f46d43fdae61fee08bffffbfd9ef8ba6d96a66bd631a9850", "a50026d73027f46d43fdae61fee08bd9ef8ba6d96a66bd631a9850006837", "a50026d73027f46d43fdae61fee08bffffbfd9ef8ba6d96a66bd631a9850006837").map(colors)); + + _export("scheme", scheme); + + _export("default", ramp(scheme)); + } + }; +}); +//# sourceMappingURL=RdYlGn.js.map diff --git a/dist/libs/d3-scale-chromatic/diverging/RdYlGn.js.map b/dist/libs/d3-scale-chromatic/diverging/RdYlGn.js.map new file mode 100644 index 0000000..f148266 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/diverging/RdYlGn.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/diverging/RdYlGn.js"],"names":["colors","ramp","scheme","Array","concat","map"],"mappings":";;;;;;;;AAAOA,Y;;AACAC,U;;;wBAEIC,M,GAAS,IAAIC,KAAJ,CAAU,CAAV,EAAaC,MAAb,CAClB,oBADkB,EAElB,0BAFkB,EAGlB,gCAHkB,EAIlB,sCAJkB,EAKlB,4CALkB,EAMlB,kDANkB,EAOlB,wDAPkB,EAQlB,8DARkB,EASlB,oEATkB,EAUlBC,GAVkB,CAUdL,MAVc,C;;;;yBAYLC,KAAKC,MAAL,C","file":"RdYlGn.js","sourcesContent":["import colors from \"../colors\";\nimport ramp from \"../ramp\";\n\nexport var scheme = new Array(3).concat(\n \"fc8d59ffffbf91cf60\",\n \"d7191cfdae61a6d96a1a9641\",\n \"d7191cfdae61ffffbfa6d96a1a9641\",\n \"d73027fc8d59fee08bd9ef8b91cf601a9850\",\n \"d73027fc8d59fee08bffffbfd9ef8b91cf601a9850\",\n \"d73027f46d43fdae61fee08bd9ef8ba6d96a66bd631a9850\",\n \"d73027f46d43fdae61fee08bffffbfd9ef8ba6d96a66bd631a9850\",\n \"a50026d73027f46d43fdae61fee08bd9ef8ba6d96a66bd631a9850006837\",\n \"a50026d73027f46d43fdae61fee08bffffbfd9ef8ba6d96a66bd631a9850006837\"\n).map(colors);\n\nexport default ramp(scheme);\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/diverging/Spectral.js b/dist/libs/d3-scale-chromatic/diverging/Spectral.js new file mode 100644 index 0000000..d22e308 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/diverging/Spectral.js @@ -0,0 +1,22 @@ +"use strict"; + +System.register(["../colors", "../ramp"], function (_export, _context) { + "use strict"; + + var colors, ramp, scheme; + return { + setters: [function (_colors) { + colors = _colors.default; + }, function (_ramp) { + ramp = _ramp.default; + }], + execute: function () { + _export("scheme", scheme = new Array(3).concat("fc8d59ffffbf99d594", "d7191cfdae61abdda42b83ba", "d7191cfdae61ffffbfabdda42b83ba", "d53e4ffc8d59fee08be6f59899d5943288bd", "d53e4ffc8d59fee08bffffbfe6f59899d5943288bd", "d53e4ff46d43fdae61fee08be6f598abdda466c2a53288bd", "d53e4ff46d43fdae61fee08bffffbfe6f598abdda466c2a53288bd", "9e0142d53e4ff46d43fdae61fee08be6f598abdda466c2a53288bd5e4fa2", "9e0142d53e4ff46d43fdae61fee08bffffbfe6f598abdda466c2a53288bd5e4fa2").map(colors)); + + _export("scheme", scheme); + + _export("default", ramp(scheme)); + } + }; +}); +//# sourceMappingURL=Spectral.js.map diff --git a/dist/libs/d3-scale-chromatic/diverging/Spectral.js.map b/dist/libs/d3-scale-chromatic/diverging/Spectral.js.map new file mode 100644 index 0000000..8fac52e --- /dev/null +++ b/dist/libs/d3-scale-chromatic/diverging/Spectral.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/diverging/Spectral.js"],"names":["colors","ramp","scheme","Array","concat","map"],"mappings":";;;;;;;;AAAOA,Y;;AACAC,U;;;wBAEIC,M,GAAS,IAAIC,KAAJ,CAAU,CAAV,EAAaC,MAAb,CAClB,oBADkB,EAElB,0BAFkB,EAGlB,gCAHkB,EAIlB,sCAJkB,EAKlB,4CALkB,EAMlB,kDANkB,EAOlB,wDAPkB,EAQlB,8DARkB,EASlB,oEATkB,EAUlBC,GAVkB,CAUdL,MAVc,C;;;;yBAYLC,KAAKC,MAAL,C","file":"Spectral.js","sourcesContent":["import colors from \"../colors\";\nimport ramp from \"../ramp\";\n\nexport var scheme = new Array(3).concat(\n \"fc8d59ffffbf99d594\",\n \"d7191cfdae61abdda42b83ba\",\n \"d7191cfdae61ffffbfabdda42b83ba\",\n \"d53e4ffc8d59fee08be6f59899d5943288bd\",\n \"d53e4ffc8d59fee08bffffbfe6f59899d5943288bd\",\n \"d53e4ff46d43fdae61fee08be6f598abdda466c2a53288bd\",\n \"d53e4ff46d43fdae61fee08bffffbfe6f598abdda466c2a53288bd\",\n \"9e0142d53e4ff46d43fdae61fee08be6f598abdda466c2a53288bd5e4fa2\",\n \"9e0142d53e4ff46d43fdae61fee08bffffbfe6f598abdda466c2a53288bd5e4fa2\"\n).map(colors);\n\nexport default ramp(scheme);\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/index.js b/dist/libs/d3-scale-chromatic/index.js new file mode 100644 index 0000000..4e527d5 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/index.js @@ -0,0 +1,219 @@ +"use strict"; + +System.register(["./categorical/Accent", "./categorical/Dark2", "./categorical/Paired", "./categorical/Pastel1", "./categorical/Pastel2", "./categorical/Set1", "./categorical/Set2", "./categorical/Set3", "./diverging/BrBG", "./diverging/PRGn", "./diverging/PiYG", "./diverging/PuOr", "./diverging/RdBu", "./diverging/RdGy", "./diverging/RdYlBu", "./diverging/RdYlGn", "./diverging/GnYlRd", "./diverging/Spectral", "./sequential-multi/BuGn", "./sequential-multi/BuPu", "./sequential-multi/GnBu", "./sequential-multi/OrRd", "./sequential-multi/PuBuGn", "./sequential-multi/PuBu", "./sequential-multi/PuRd", "./sequential-multi/RdPu", "./sequential-multi/YlGnBu", "./sequential-multi/YlGn", "./sequential-multi/YlOrBr", "./sequential-multi/YlOrRd", "./sequential-single/Blues", "./sequential-single/Greens", "./sequential-single/Greys", "./sequential-single/Purples", "./sequential-single/Reds", "./sequential-single/Oranges"], function (_export, _context) { + "use strict"; + + return { + setters: [function (_categoricalAccent) { + var _exportObj = {}; + _exportObj.schemeAccent = _categoricalAccent.default; + + _export(_exportObj); + }, function (_categoricalDark) { + var _exportObj2 = {}; + _exportObj2.schemeDark2 = _categoricalDark.default; + + _export(_exportObj2); + }, function (_categoricalPaired) { + var _exportObj3 = {}; + _exportObj3.schemePaired = _categoricalPaired.default; + + _export(_exportObj3); + }, function (_categoricalPastel) { + var _exportObj4 = {}; + _exportObj4.schemePastel1 = _categoricalPastel.default; + + _export(_exportObj4); + }, function (_categoricalPastel2) { + var _exportObj5 = {}; + _exportObj5.schemePastel2 = _categoricalPastel2.default; + + _export(_exportObj5); + }, function (_categoricalSet) { + var _exportObj6 = {}; + _exportObj6.schemeSet1 = _categoricalSet.default; + + _export(_exportObj6); + }, function (_categoricalSet2) { + var _exportObj7 = {}; + _exportObj7.schemeSet2 = _categoricalSet2.default; + + _export(_exportObj7); + }, function (_categoricalSet3) { + var _exportObj8 = {}; + _exportObj8.schemeSet3 = _categoricalSet3.default; + + _export(_exportObj8); + }, function (_divergingBrBG) { + var _exportObj9 = {}; + _exportObj9.interpolateBrBG = _divergingBrBG.default; + _exportObj9.schemeBrBG = _divergingBrBG.scheme; + + _export(_exportObj9); + }, function (_divergingPRGn) { + var _exportObj10 = {}; + _exportObj10.interpolatePRGn = _divergingPRGn.default; + _exportObj10.schemePRGn = _divergingPRGn.scheme; + + _export(_exportObj10); + }, function (_divergingPiYG) { + var _exportObj11 = {}; + _exportObj11.interpolatePiYG = _divergingPiYG.default; + _exportObj11.schemePiYG = _divergingPiYG.scheme; + + _export(_exportObj11); + }, function (_divergingPuOr) { + var _exportObj12 = {}; + _exportObj12.interpolatePuOr = _divergingPuOr.default; + _exportObj12.schemePuOr = _divergingPuOr.scheme; + + _export(_exportObj12); + }, function (_divergingRdBu) { + var _exportObj13 = {}; + _exportObj13.interpolateRdBu = _divergingRdBu.default; + _exportObj13.schemeRdBu = _divergingRdBu.scheme; + + _export(_exportObj13); + }, function (_divergingRdGy) { + var _exportObj14 = {}; + _exportObj14.interpolateRdGy = _divergingRdGy.default; + _exportObj14.schemeRdGy = _divergingRdGy.scheme; + + _export(_exportObj14); + }, function (_divergingRdYlBu) { + var _exportObj15 = {}; + _exportObj15.interpolateRdYlBu = _divergingRdYlBu.default; + _exportObj15.schemeRdYlBu = _divergingRdYlBu.scheme; + + _export(_exportObj15); + }, function (_divergingRdYlGn) { + var _exportObj16 = {}; + _exportObj16.interpolateRdYlGn = _divergingRdYlGn.default; + _exportObj16.schemeRdYlGn = _divergingRdYlGn.scheme; + + _export(_exportObj16); + }, function (_divergingGnYlRd) { + var _exportObj17 = {}; + _exportObj17.interpolateGnYlRd = _divergingGnYlRd.default; + _exportObj17.schemeGnYlRd = _divergingGnYlRd.scheme; + + _export(_exportObj17); + }, function (_divergingSpectral) { + var _exportObj18 = {}; + _exportObj18.interpolateSpectral = _divergingSpectral.default; + _exportObj18.schemeSpectral = _divergingSpectral.scheme; + + _export(_exportObj18); + }, function (_sequentialMultiBuGn) { + var _exportObj19 = {}; + _exportObj19.interpolateBuGn = _sequentialMultiBuGn.default; + _exportObj19.schemeBuGn = _sequentialMultiBuGn.scheme; + + _export(_exportObj19); + }, function (_sequentialMultiBuPu) { + var _exportObj20 = {}; + _exportObj20.interpolateBuPu = _sequentialMultiBuPu.default; + _exportObj20.schemeBuPu = _sequentialMultiBuPu.scheme; + + _export(_exportObj20); + }, function (_sequentialMultiGnBu) { + var _exportObj21 = {}; + _exportObj21.interpolateGnBu = _sequentialMultiGnBu.default; + _exportObj21.schemeGnBu = _sequentialMultiGnBu.scheme; + + _export(_exportObj21); + }, function (_sequentialMultiOrRd) { + var _exportObj22 = {}; + _exportObj22.interpolateOrRd = _sequentialMultiOrRd.default; + _exportObj22.schemeOrRd = _sequentialMultiOrRd.scheme; + + _export(_exportObj22); + }, function (_sequentialMultiPuBuGn) { + var _exportObj23 = {}; + _exportObj23.interpolatePuBuGn = _sequentialMultiPuBuGn.default; + _exportObj23.schemePuBuGn = _sequentialMultiPuBuGn.scheme; + + _export(_exportObj23); + }, function (_sequentialMultiPuBu) { + var _exportObj24 = {}; + _exportObj24.interpolatePuBu = _sequentialMultiPuBu.default; + _exportObj24.schemePuBu = _sequentialMultiPuBu.scheme; + + _export(_exportObj24); + }, function (_sequentialMultiPuRd) { + var _exportObj25 = {}; + _exportObj25.interpolatePuRd = _sequentialMultiPuRd.default; + _exportObj25.schemePuRd = _sequentialMultiPuRd.scheme; + + _export(_exportObj25); + }, function (_sequentialMultiRdPu) { + var _exportObj26 = {}; + _exportObj26.interpolateRdPu = _sequentialMultiRdPu.default; + _exportObj26.schemeRdPu = _sequentialMultiRdPu.scheme; + + _export(_exportObj26); + }, function (_sequentialMultiYlGnBu) { + var _exportObj27 = {}; + _exportObj27.interpolateYlGnBu = _sequentialMultiYlGnBu.default; + _exportObj27.schemeYlGnBu = _sequentialMultiYlGnBu.scheme; + + _export(_exportObj27); + }, function (_sequentialMultiYlGn) { + var _exportObj28 = {}; + _exportObj28.interpolateYlGn = _sequentialMultiYlGn.default; + _exportObj28.schemeYlGn = _sequentialMultiYlGn.scheme; + + _export(_exportObj28); + }, function (_sequentialMultiYlOrBr) { + var _exportObj29 = {}; + _exportObj29.interpolateYlOrBr = _sequentialMultiYlOrBr.default; + _exportObj29.schemeYlOrBr = _sequentialMultiYlOrBr.scheme; + + _export(_exportObj29); + }, function (_sequentialMultiYlOrRd) { + var _exportObj30 = {}; + _exportObj30.interpolateYlOrRd = _sequentialMultiYlOrRd.default; + _exportObj30.schemeYlOrRd = _sequentialMultiYlOrRd.scheme; + + _export(_exportObj30); + }, function (_sequentialSingleBlues) { + var _exportObj31 = {}; + _exportObj31.interpolateBlues = _sequentialSingleBlues.default; + _exportObj31.schemeBlues = _sequentialSingleBlues.scheme; + + _export(_exportObj31); + }, function (_sequentialSingleGreens) { + var _exportObj32 = {}; + _exportObj32.interpolateGreens = _sequentialSingleGreens.default; + _exportObj32.schemeGreens = _sequentialSingleGreens.scheme; + + _export(_exportObj32); + }, function (_sequentialSingleGreys) { + var _exportObj33 = {}; + _exportObj33.interpolateGreys = _sequentialSingleGreys.default; + _exportObj33.schemeGreys = _sequentialSingleGreys.scheme; + + _export(_exportObj33); + }, function (_sequentialSinglePurples) { + var _exportObj34 = {}; + _exportObj34.interpolatePurples = _sequentialSinglePurples.default; + _exportObj34.schemePurples = _sequentialSinglePurples.scheme; + + _export(_exportObj34); + }, function (_sequentialSingleReds) { + var _exportObj35 = {}; + _exportObj35.interpolateReds = _sequentialSingleReds.default; + _exportObj35.schemeReds = _sequentialSingleReds.scheme; + + _export(_exportObj35); + }, function (_sequentialSingleOranges) { + var _exportObj36 = {}; + _exportObj36.interpolateOranges = _sequentialSingleOranges.default; + _exportObj36.schemeOranges = _sequentialSingleOranges.scheme; + + _export(_exportObj36); + }], + execute: function () {} + }; +}); +//# sourceMappingURL=index.js.map diff --git a/dist/libs/d3-scale-chromatic/index.js.map b/dist/libs/d3-scale-chromatic/index.js.map new file mode 100644 index 0000000..b2e3a4d --- /dev/null +++ b/dist/libs/d3-scale-chromatic/index.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/libs/d3-scale-chromatic/index.js"],"names":["schemeAccent","default","schemeDark2","schemePaired","schemePastel1","schemePastel2","schemeSet1","schemeSet2","schemeSet3","interpolateBrBG","schemeBrBG","scheme","interpolatePRGn","schemePRGn","interpolatePiYG","schemePiYG","interpolatePuOr","schemePuOr","interpolateRdBu","schemeRdBu","interpolateRdGy","schemeRdGy","interpolateRdYlBu","schemeRdYlBu","interpolateRdYlGn","schemeRdYlGn","interpolateGnYlRd","schemeGnYlRd","interpolateSpectral","schemeSpectral","interpolateBuGn","schemeBuGn","interpolateBuPu","schemeBuPu","interpolateGnBu","schemeGnBu","interpolateOrRd","schemeOrRd","interpolatePuBuGn","schemePuBuGn","interpolatePuBu","schemePuBu","interpolatePuRd","schemePuRd","interpolateRdPu","schemeRdPu","interpolateYlGnBu","schemeYlGnBu","interpolateYlGn","schemeYlGn","interpolateYlOrBr","schemeYlOrBr","interpolateYlOrRd","schemeYlOrRd","interpolateBlues","schemeBlues","interpolateGreens","schemeGreens","interpolateGreys","schemeGreys","interpolatePurples","schemePurples","interpolateReds","schemeReds","interpolateOranges","schemeOranges"],"mappings":";;;;;;;;iBAAmBA,Y,sBAAXC,O;;;;;kBACWC,W,oBAAXD,O;;;;;kBACWE,Y,sBAAXF,O;;;;;kBACWG,a,sBAAXH,O;;;;;kBACWI,a,uBAAXJ,O;;;;;kBACWK,U,mBAAXL,O;;;;;kBACWM,U,oBAAXN,O;;;;;kBACWO,U,oBAAXP,O;;;;;kBACWQ,e,kBAAXR,O;kBAAsCS,U,kBAAVC,M;;;;;mBACjBC,e,kBAAXX,O;mBAAsCY,U,kBAAVF,M;;;;;mBACjBG,e,kBAAXb,O;mBAAsCc,U,kBAAVJ,M;;;;;mBACjBK,e,kBAAXf,O;mBAAsCgB,U,kBAAVN,M;;;;;mBACjBO,e,kBAAXjB,O;mBAAsCkB,U,kBAAVR,M;;;;;mBACjBS,e,kBAAXnB,O;mBAAsCoB,U,kBAAVV,M;;;;;mBACjBW,iB,oBAAXrB,O;mBAAwCsB,Y,oBAAVZ,M;;;;;mBACnBa,iB,oBAAXvB,O;mBAAwCwB,Y,oBAAVd,M;;;;;mBACnBe,iB,oBAAXzB,O;mBAAwC0B,Y,oBAAVhB,M;;;;;mBACnBiB,mB,sBAAX3B,O;mBAA0C4B,c,sBAAVlB,M;;;;;mBACrBmB,e,wBAAX7B,O;mBAAsC8B,U,wBAAVpB,M;;;;;mBACjBqB,e,wBAAX/B,O;mBAAsCgC,U,wBAAVtB,M;;;;;mBACjBuB,e,wBAAXjC,O;mBAAsCkC,U,wBAAVxB,M;;;;;mBACjByB,e,wBAAXnC,O;mBAAsCoC,U,wBAAV1B,M;;;;;mBACjB2B,iB,0BAAXrC,O;mBAAwCsC,Y,0BAAV5B,M;;;;;mBACnB6B,e,wBAAXvC,O;mBAAsCwC,U,wBAAV9B,M;;;;;mBACjB+B,e,wBAAXzC,O;mBAAsC0C,U,wBAAVhC,M;;;;;mBACjBiC,e,wBAAX3C,O;mBAAsC4C,U,wBAAVlC,M;;;;;mBACjBmC,iB,0BAAX7C,O;mBAAwC8C,Y,0BAAVpC,M;;;;;mBACnBqC,e,wBAAX/C,O;mBAAsCgD,U,wBAAVtC,M;;;;;mBACjBuC,iB,0BAAXjD,O;mBAAwCkD,Y,0BAAVxC,M;;;;;mBACnByC,iB,0BAAXnD,O;mBAAwCoD,Y,0BAAV1C,M;;;;;mBACnB2C,gB,0BAAXrD,O;mBAAuCsD,W,0BAAV5C,M;;;;;mBAClB6C,iB,2BAAXvD,O;mBAAwCwD,Y,2BAAV9C,M;;;;;mBACnB+C,gB,0BAAXzD,O;mBAAuC0D,W,0BAAVhD,M;;;;;mBAClBiD,kB,4BAAX3D,O;mBAAyC4D,a,4BAAVlD,M;;;;;mBACpBmD,e,yBAAX7D,O;mBAAsC8D,U,yBAAVpD,M;;;;;mBACjBqD,kB,4BAAX/D,O;mBAAyCgE,a,4BAAVtD,M","file":"index.js","sourcesContent":["export {default as schemeAccent} from \"./categorical/Accent\";\nexport {default as schemeDark2} from \"./categorical/Dark2\";\nexport {default as schemePaired} from \"./categorical/Paired\";\nexport {default as schemePastel1} from \"./categorical/Pastel1\";\nexport {default as schemePastel2} from \"./categorical/Pastel2\";\nexport {default as schemeSet1} from \"./categorical/Set1\";\nexport {default as schemeSet2} from \"./categorical/Set2\";\nexport {default as schemeSet3} from \"./categorical/Set3\";\nexport {default as interpolateBrBG, scheme as schemeBrBG} from \"./diverging/BrBG\";\nexport {default as interpolatePRGn, scheme as schemePRGn} from \"./diverging/PRGn\";\nexport {default as interpolatePiYG, scheme as schemePiYG} from \"./diverging/PiYG\";\nexport {default as interpolatePuOr, scheme as schemePuOr} from \"./diverging/PuOr\";\nexport {default as interpolateRdBu, scheme as schemeRdBu} from \"./diverging/RdBu\";\nexport {default as interpolateRdGy, scheme as schemeRdGy} from \"./diverging/RdGy\";\nexport {default as interpolateRdYlBu, scheme as schemeRdYlBu} from \"./diverging/RdYlBu\";\nexport {default as interpolateRdYlGn, scheme as schemeRdYlGn} from \"./diverging/RdYlGn\";\nexport {default as interpolateGnYlRd, scheme as schemeGnYlRd} from \"./diverging/GnYlRd\";\nexport {default as interpolateSpectral, scheme as schemeSpectral} from \"./diverging/Spectral\";\nexport {default as interpolateBuGn, scheme as schemeBuGn} from \"./sequential-multi/BuGn\";\nexport {default as interpolateBuPu, scheme as schemeBuPu} from \"./sequential-multi/BuPu\";\nexport {default as interpolateGnBu, scheme as schemeGnBu} from \"./sequential-multi/GnBu\";\nexport {default as interpolateOrRd, scheme as schemeOrRd} from \"./sequential-multi/OrRd\";\nexport {default as interpolatePuBuGn, scheme as schemePuBuGn} from \"./sequential-multi/PuBuGn\";\nexport {default as interpolatePuBu, scheme as schemePuBu} from \"./sequential-multi/PuBu\";\nexport {default as interpolatePuRd, scheme as schemePuRd} from \"./sequential-multi/PuRd\";\nexport {default as interpolateRdPu, scheme as schemeRdPu} from \"./sequential-multi/RdPu\";\nexport {default as interpolateYlGnBu, scheme as schemeYlGnBu} from \"./sequential-multi/YlGnBu\";\nexport {default as interpolateYlGn, scheme as schemeYlGn} from \"./sequential-multi/YlGn\";\nexport {default as interpolateYlOrBr, scheme as schemeYlOrBr} from \"./sequential-multi/YlOrBr\";\nexport {default as interpolateYlOrRd, scheme as schemeYlOrRd} from \"./sequential-multi/YlOrRd\";\nexport {default as interpolateBlues, scheme as schemeBlues} from \"./sequential-single/Blues\";\nexport {default as interpolateGreens, scheme as schemeGreens} from \"./sequential-single/Greens\";\nexport {default as interpolateGreys, scheme as schemeGreys} from \"./sequential-single/Greys\";\nexport {default as interpolatePurples, scheme as schemePurples} from \"./sequential-single/Purples\";\nexport {default as interpolateReds, scheme as schemeReds} from \"./sequential-single/Reds\";\nexport {default as interpolateOranges, scheme as schemeOranges} from \"./sequential-single/Oranges\";\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/ramp.js b/dist/libs/d3-scale-chromatic/ramp.js new file mode 100644 index 0000000..c0443a3 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/ramp.js @@ -0,0 +1,19 @@ +'use strict'; + +System.register(['d3'], function (_export, _context) { + "use strict"; + + var d3; + + _export('default', function (scheme) { + return d3.interpolateRgbBasis(scheme[scheme.length - 1]); + }); + + return { + setters: [function (_d) { + d3 = _d.default; + }], + execute: function () {} + }; +}); +//# sourceMappingURL=ramp.js.map diff --git a/dist/libs/d3-scale-chromatic/ramp.js.map b/dist/libs/d3-scale-chromatic/ramp.js.map new file mode 100644 index 0000000..c377727 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/ramp.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../src/libs/d3-scale-chromatic/ramp.js"],"names":["scheme","d3","interpolateRgbBasis","length"],"mappings":";;;;;;;qBAEe,UAASA,MAAT,EAAiB;AAC9B,WAAOC,GAAGC,mBAAH,CAAuBF,OAAOA,OAAOG,MAAP,GAAgB,CAAvB,CAAvB,CAAP;AACD,G;;;;AAJMF,Q","file":"ramp.js","sourcesContent":["import d3 from 'd3';\n\nexport default function(scheme) {\n return d3.interpolateRgbBasis(scheme[scheme.length - 1]);\n}\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/sequential-multi/BuGn.js b/dist/libs/d3-scale-chromatic/sequential-multi/BuGn.js new file mode 100644 index 0000000..60e5666 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-multi/BuGn.js @@ -0,0 +1,22 @@ +"use strict"; + +System.register(["../colors", "../ramp"], function (_export, _context) { + "use strict"; + + var colors, ramp, scheme; + return { + setters: [function (_colors) { + colors = _colors.default; + }, function (_ramp) { + ramp = _ramp.default; + }], + execute: function () { + _export("scheme", scheme = new Array(3).concat("e5f5f999d8c92ca25f", "edf8fbb2e2e266c2a4238b45", "edf8fbb2e2e266c2a42ca25f006d2c", "edf8fbccece699d8c966c2a42ca25f006d2c", "edf8fbccece699d8c966c2a441ae76238b45005824", "f7fcfde5f5f9ccece699d8c966c2a441ae76238b45005824", "f7fcfde5f5f9ccece699d8c966c2a441ae76238b45006d2c00441b").map(colors)); + + _export("scheme", scheme); + + _export("default", ramp(scheme)); + } + }; +}); +//# sourceMappingURL=BuGn.js.map diff --git a/dist/libs/d3-scale-chromatic/sequential-multi/BuGn.js.map b/dist/libs/d3-scale-chromatic/sequential-multi/BuGn.js.map new file mode 100644 index 0000000..6967689 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-multi/BuGn.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/sequential-multi/BuGn.js"],"names":["colors","ramp","scheme","Array","concat","map"],"mappings":";;;;;;;;AAAOA,Y;;AACAC,U;;;wBAEIC,M,GAAS,IAAIC,KAAJ,CAAU,CAAV,EAAaC,MAAb,CAClB,oBADkB,EAElB,0BAFkB,EAGlB,gCAHkB,EAIlB,sCAJkB,EAKlB,4CALkB,EAMlB,kDANkB,EAOlB,wDAPkB,EAQlBC,GARkB,CAQdL,MARc,C;;;;yBAULC,KAAKC,MAAL,C","file":"BuGn.js","sourcesContent":["import colors from \"../colors\";\nimport ramp from \"../ramp\";\n\nexport var scheme = new Array(3).concat(\n \"e5f5f999d8c92ca25f\",\n \"edf8fbb2e2e266c2a4238b45\",\n \"edf8fbb2e2e266c2a42ca25f006d2c\",\n \"edf8fbccece699d8c966c2a42ca25f006d2c\",\n \"edf8fbccece699d8c966c2a441ae76238b45005824\",\n \"f7fcfde5f5f9ccece699d8c966c2a441ae76238b45005824\",\n \"f7fcfde5f5f9ccece699d8c966c2a441ae76238b45006d2c00441b\"\n).map(colors);\n\nexport default ramp(scheme);\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/sequential-multi/BuPu.js b/dist/libs/d3-scale-chromatic/sequential-multi/BuPu.js new file mode 100644 index 0000000..774f96a --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-multi/BuPu.js @@ -0,0 +1,22 @@ +"use strict"; + +System.register(["../colors", "../ramp"], function (_export, _context) { + "use strict"; + + var colors, ramp, scheme; + return { + setters: [function (_colors) { + colors = _colors.default; + }, function (_ramp) { + ramp = _ramp.default; + }], + execute: function () { + _export("scheme", scheme = new Array(3).concat("e0ecf49ebcda8856a7", "edf8fbb3cde38c96c688419d", "edf8fbb3cde38c96c68856a7810f7c", "edf8fbbfd3e69ebcda8c96c68856a7810f7c", "edf8fbbfd3e69ebcda8c96c68c6bb188419d6e016b", "f7fcfde0ecf4bfd3e69ebcda8c96c68c6bb188419d6e016b", "f7fcfde0ecf4bfd3e69ebcda8c96c68c6bb188419d810f7c4d004b").map(colors)); + + _export("scheme", scheme); + + _export("default", ramp(scheme)); + } + }; +}); +//# sourceMappingURL=BuPu.js.map diff --git a/dist/libs/d3-scale-chromatic/sequential-multi/BuPu.js.map b/dist/libs/d3-scale-chromatic/sequential-multi/BuPu.js.map new file mode 100644 index 0000000..b998c2e --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-multi/BuPu.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/sequential-multi/BuPu.js"],"names":["colors","ramp","scheme","Array","concat","map"],"mappings":";;;;;;;;AAAOA,Y;;AACAC,U;;;wBAEIC,M,GAAS,IAAIC,KAAJ,CAAU,CAAV,EAAaC,MAAb,CAClB,oBADkB,EAElB,0BAFkB,EAGlB,gCAHkB,EAIlB,sCAJkB,EAKlB,4CALkB,EAMlB,kDANkB,EAOlB,wDAPkB,EAQlBC,GARkB,CAQdL,MARc,C;;;;yBAULC,KAAKC,MAAL,C","file":"BuPu.js","sourcesContent":["import colors from \"../colors\";\nimport ramp from \"../ramp\";\n\nexport var scheme = new Array(3).concat(\n \"e0ecf49ebcda8856a7\",\n \"edf8fbb3cde38c96c688419d\",\n \"edf8fbb3cde38c96c68856a7810f7c\",\n \"edf8fbbfd3e69ebcda8c96c68856a7810f7c\",\n \"edf8fbbfd3e69ebcda8c96c68c6bb188419d6e016b\",\n \"f7fcfde0ecf4bfd3e69ebcda8c96c68c6bb188419d6e016b\",\n \"f7fcfde0ecf4bfd3e69ebcda8c96c68c6bb188419d810f7c4d004b\"\n).map(colors);\n\nexport default ramp(scheme);\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/sequential-multi/GnBu.js b/dist/libs/d3-scale-chromatic/sequential-multi/GnBu.js new file mode 100644 index 0000000..30a9168 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-multi/GnBu.js @@ -0,0 +1,22 @@ +"use strict"; + +System.register(["../colors", "../ramp"], function (_export, _context) { + "use strict"; + + var colors, ramp, scheme; + return { + setters: [function (_colors) { + colors = _colors.default; + }, function (_ramp) { + ramp = _ramp.default; + }], + execute: function () { + _export("scheme", scheme = new Array(3).concat("e0f3dba8ddb543a2ca", "f0f9e8bae4bc7bccc42b8cbe", "f0f9e8bae4bc7bccc443a2ca0868ac", "f0f9e8ccebc5a8ddb57bccc443a2ca0868ac", "f0f9e8ccebc5a8ddb57bccc44eb3d32b8cbe08589e", "f7fcf0e0f3dbccebc5a8ddb57bccc44eb3d32b8cbe08589e", "f7fcf0e0f3dbccebc5a8ddb57bccc44eb3d32b8cbe0868ac084081").map(colors)); + + _export("scheme", scheme); + + _export("default", ramp(scheme)); + } + }; +}); +//# sourceMappingURL=GnBu.js.map diff --git a/dist/libs/d3-scale-chromatic/sequential-multi/GnBu.js.map b/dist/libs/d3-scale-chromatic/sequential-multi/GnBu.js.map new file mode 100644 index 0000000..1b42e17 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-multi/GnBu.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/sequential-multi/GnBu.js"],"names":["colors","ramp","scheme","Array","concat","map"],"mappings":";;;;;;;;AAAOA,Y;;AACAC,U;;;wBAEIC,M,GAAS,IAAIC,KAAJ,CAAU,CAAV,EAAaC,MAAb,CAClB,oBADkB,EAElB,0BAFkB,EAGlB,gCAHkB,EAIlB,sCAJkB,EAKlB,4CALkB,EAMlB,kDANkB,EAOlB,wDAPkB,EAQlBC,GARkB,CAQdL,MARc,C;;;;yBAULC,KAAKC,MAAL,C","file":"GnBu.js","sourcesContent":["import colors from \"../colors\";\nimport ramp from \"../ramp\";\n\nexport var scheme = new Array(3).concat(\n \"e0f3dba8ddb543a2ca\",\n \"f0f9e8bae4bc7bccc42b8cbe\",\n \"f0f9e8bae4bc7bccc443a2ca0868ac\",\n \"f0f9e8ccebc5a8ddb57bccc443a2ca0868ac\",\n \"f0f9e8ccebc5a8ddb57bccc44eb3d32b8cbe08589e\",\n \"f7fcf0e0f3dbccebc5a8ddb57bccc44eb3d32b8cbe08589e\",\n \"f7fcf0e0f3dbccebc5a8ddb57bccc44eb3d32b8cbe0868ac084081\"\n).map(colors);\n\nexport default ramp(scheme);\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/sequential-multi/OrRd.js b/dist/libs/d3-scale-chromatic/sequential-multi/OrRd.js new file mode 100644 index 0000000..2274cb8 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-multi/OrRd.js @@ -0,0 +1,22 @@ +"use strict"; + +System.register(["../colors", "../ramp"], function (_export, _context) { + "use strict"; + + var colors, ramp, scheme; + return { + setters: [function (_colors) { + colors = _colors.default; + }, function (_ramp) { + ramp = _ramp.default; + }], + execute: function () { + _export("scheme", scheme = new Array(3).concat("fee8c8fdbb84e34a33", "fef0d9fdcc8afc8d59d7301f", "fef0d9fdcc8afc8d59e34a33b30000", "fef0d9fdd49efdbb84fc8d59e34a33b30000", "fef0d9fdd49efdbb84fc8d59ef6548d7301f990000", "fff7ecfee8c8fdd49efdbb84fc8d59ef6548d7301f990000", "fff7ecfee8c8fdd49efdbb84fc8d59ef6548d7301fb300007f0000").map(colors)); + + _export("scheme", scheme); + + _export("default", ramp(scheme)); + } + }; +}); +//# sourceMappingURL=OrRd.js.map diff --git a/dist/libs/d3-scale-chromatic/sequential-multi/OrRd.js.map b/dist/libs/d3-scale-chromatic/sequential-multi/OrRd.js.map new file mode 100644 index 0000000..2c42bf3 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-multi/OrRd.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/sequential-multi/OrRd.js"],"names":["colors","ramp","scheme","Array","concat","map"],"mappings":";;;;;;;;AAAOA,Y;;AACAC,U;;;wBAEIC,M,GAAS,IAAIC,KAAJ,CAAU,CAAV,EAAaC,MAAb,CAClB,oBADkB,EAElB,0BAFkB,EAGlB,gCAHkB,EAIlB,sCAJkB,EAKlB,4CALkB,EAMlB,kDANkB,EAOlB,wDAPkB,EAQlBC,GARkB,CAQdL,MARc,C;;;;yBAULC,KAAKC,MAAL,C","file":"OrRd.js","sourcesContent":["import colors from \"../colors\";\nimport ramp from \"../ramp\";\n\nexport var scheme = new Array(3).concat(\n \"fee8c8fdbb84e34a33\",\n \"fef0d9fdcc8afc8d59d7301f\",\n \"fef0d9fdcc8afc8d59e34a33b30000\",\n \"fef0d9fdd49efdbb84fc8d59e34a33b30000\",\n \"fef0d9fdd49efdbb84fc8d59ef6548d7301f990000\",\n \"fff7ecfee8c8fdd49efdbb84fc8d59ef6548d7301f990000\",\n \"fff7ecfee8c8fdd49efdbb84fc8d59ef6548d7301fb300007f0000\"\n).map(colors);\n\nexport default ramp(scheme);\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/sequential-multi/PuBu.js b/dist/libs/d3-scale-chromatic/sequential-multi/PuBu.js new file mode 100644 index 0000000..0844375 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-multi/PuBu.js @@ -0,0 +1,22 @@ +"use strict"; + +System.register(["../colors", "../ramp"], function (_export, _context) { + "use strict"; + + var colors, ramp, scheme; + return { + setters: [function (_colors) { + colors = _colors.default; + }, function (_ramp) { + ramp = _ramp.default; + }], + execute: function () { + _export("scheme", scheme = new Array(3).concat("ece7f2a6bddb2b8cbe", "f1eef6bdc9e174a9cf0570b0", "f1eef6bdc9e174a9cf2b8cbe045a8d", "f1eef6d0d1e6a6bddb74a9cf2b8cbe045a8d", "f1eef6d0d1e6a6bddb74a9cf3690c00570b0034e7b", "fff7fbece7f2d0d1e6a6bddb74a9cf3690c00570b0034e7b", "fff7fbece7f2d0d1e6a6bddb74a9cf3690c00570b0045a8d023858").map(colors)); + + _export("scheme", scheme); + + _export("default", ramp(scheme)); + } + }; +}); +//# sourceMappingURL=PuBu.js.map diff --git a/dist/libs/d3-scale-chromatic/sequential-multi/PuBu.js.map b/dist/libs/d3-scale-chromatic/sequential-multi/PuBu.js.map new file mode 100644 index 0000000..9e804b9 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-multi/PuBu.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/sequential-multi/PuBu.js"],"names":["colors","ramp","scheme","Array","concat","map"],"mappings":";;;;;;;;AAAOA,Y;;AACAC,U;;;wBAEIC,M,GAAS,IAAIC,KAAJ,CAAU,CAAV,EAAaC,MAAb,CAClB,oBADkB,EAElB,0BAFkB,EAGlB,gCAHkB,EAIlB,sCAJkB,EAKlB,4CALkB,EAMlB,kDANkB,EAOlB,wDAPkB,EAQlBC,GARkB,CAQdL,MARc,C;;;;yBAULC,KAAKC,MAAL,C","file":"PuBu.js","sourcesContent":["import colors from \"../colors\";\nimport ramp from \"../ramp\";\n\nexport var scheme = new Array(3).concat(\n \"ece7f2a6bddb2b8cbe\",\n \"f1eef6bdc9e174a9cf0570b0\",\n \"f1eef6bdc9e174a9cf2b8cbe045a8d\",\n \"f1eef6d0d1e6a6bddb74a9cf2b8cbe045a8d\",\n \"f1eef6d0d1e6a6bddb74a9cf3690c00570b0034e7b\",\n \"fff7fbece7f2d0d1e6a6bddb74a9cf3690c00570b0034e7b\",\n \"fff7fbece7f2d0d1e6a6bddb74a9cf3690c00570b0045a8d023858\"\n).map(colors);\n\nexport default ramp(scheme);\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/sequential-multi/PuBuGn.js b/dist/libs/d3-scale-chromatic/sequential-multi/PuBuGn.js new file mode 100644 index 0000000..33b51cd --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-multi/PuBuGn.js @@ -0,0 +1,22 @@ +"use strict"; + +System.register(["../colors", "../ramp"], function (_export, _context) { + "use strict"; + + var colors, ramp, scheme; + return { + setters: [function (_colors) { + colors = _colors.default; + }, function (_ramp) { + ramp = _ramp.default; + }], + execute: function () { + _export("scheme", scheme = new Array(3).concat("ece2f0a6bddb1c9099", "f6eff7bdc9e167a9cf02818a", "f6eff7bdc9e167a9cf1c9099016c59", "f6eff7d0d1e6a6bddb67a9cf1c9099016c59", "f6eff7d0d1e6a6bddb67a9cf3690c002818a016450", "fff7fbece2f0d0d1e6a6bddb67a9cf3690c002818a016450", "fff7fbece2f0d0d1e6a6bddb67a9cf3690c002818a016c59014636").map(colors)); + + _export("scheme", scheme); + + _export("default", ramp(scheme)); + } + }; +}); +//# sourceMappingURL=PuBuGn.js.map diff --git a/dist/libs/d3-scale-chromatic/sequential-multi/PuBuGn.js.map b/dist/libs/d3-scale-chromatic/sequential-multi/PuBuGn.js.map new file mode 100644 index 0000000..b1c8d89 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-multi/PuBuGn.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/sequential-multi/PuBuGn.js"],"names":["colors","ramp","scheme","Array","concat","map"],"mappings":";;;;;;;;AAAOA,Y;;AACAC,U;;;wBAEIC,M,GAAS,IAAIC,KAAJ,CAAU,CAAV,EAAaC,MAAb,CAClB,oBADkB,EAElB,0BAFkB,EAGlB,gCAHkB,EAIlB,sCAJkB,EAKlB,4CALkB,EAMlB,kDANkB,EAOlB,wDAPkB,EAQlBC,GARkB,CAQdL,MARc,C;;;;yBAULC,KAAKC,MAAL,C","file":"PuBuGn.js","sourcesContent":["import colors from \"../colors\";\nimport ramp from \"../ramp\";\n\nexport var scheme = new Array(3).concat(\n \"ece2f0a6bddb1c9099\",\n \"f6eff7bdc9e167a9cf02818a\",\n \"f6eff7bdc9e167a9cf1c9099016c59\",\n \"f6eff7d0d1e6a6bddb67a9cf1c9099016c59\",\n \"f6eff7d0d1e6a6bddb67a9cf3690c002818a016450\",\n \"fff7fbece2f0d0d1e6a6bddb67a9cf3690c002818a016450\",\n \"fff7fbece2f0d0d1e6a6bddb67a9cf3690c002818a016c59014636\"\n).map(colors);\n\nexport default ramp(scheme);\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/sequential-multi/PuRd.js b/dist/libs/d3-scale-chromatic/sequential-multi/PuRd.js new file mode 100644 index 0000000..8802365 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-multi/PuRd.js @@ -0,0 +1,22 @@ +"use strict"; + +System.register(["../colors", "../ramp"], function (_export, _context) { + "use strict"; + + var colors, ramp, scheme; + return { + setters: [function (_colors) { + colors = _colors.default; + }, function (_ramp) { + ramp = _ramp.default; + }], + execute: function () { + _export("scheme", scheme = new Array(3).concat("e7e1efc994c7dd1c77", "f1eef6d7b5d8df65b0ce1256", "f1eef6d7b5d8df65b0dd1c77980043", "f1eef6d4b9dac994c7df65b0dd1c77980043", "f1eef6d4b9dac994c7df65b0e7298ace125691003f", "f7f4f9e7e1efd4b9dac994c7df65b0e7298ace125691003f", "f7f4f9e7e1efd4b9dac994c7df65b0e7298ace125698004367001f").map(colors)); + + _export("scheme", scheme); + + _export("default", ramp(scheme)); + } + }; +}); +//# sourceMappingURL=PuRd.js.map diff --git a/dist/libs/d3-scale-chromatic/sequential-multi/PuRd.js.map b/dist/libs/d3-scale-chromatic/sequential-multi/PuRd.js.map new file mode 100644 index 0000000..94d39f5 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-multi/PuRd.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/sequential-multi/PuRd.js"],"names":["colors","ramp","scheme","Array","concat","map"],"mappings":";;;;;;;;AAAOA,Y;;AACAC,U;;;wBAEIC,M,GAAS,IAAIC,KAAJ,CAAU,CAAV,EAAaC,MAAb,CAClB,oBADkB,EAElB,0BAFkB,EAGlB,gCAHkB,EAIlB,sCAJkB,EAKlB,4CALkB,EAMlB,kDANkB,EAOlB,wDAPkB,EAQlBC,GARkB,CAQdL,MARc,C;;;;yBAULC,KAAKC,MAAL,C","file":"PuRd.js","sourcesContent":["import colors from \"../colors\";\nimport ramp from \"../ramp\";\n\nexport var scheme = new Array(3).concat(\n \"e7e1efc994c7dd1c77\",\n \"f1eef6d7b5d8df65b0ce1256\",\n \"f1eef6d7b5d8df65b0dd1c77980043\",\n \"f1eef6d4b9dac994c7df65b0dd1c77980043\",\n \"f1eef6d4b9dac994c7df65b0e7298ace125691003f\",\n \"f7f4f9e7e1efd4b9dac994c7df65b0e7298ace125691003f\",\n \"f7f4f9e7e1efd4b9dac994c7df65b0e7298ace125698004367001f\"\n).map(colors);\n\nexport default ramp(scheme);\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/sequential-multi/RdPu.js b/dist/libs/d3-scale-chromatic/sequential-multi/RdPu.js new file mode 100644 index 0000000..7528f72 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-multi/RdPu.js @@ -0,0 +1,22 @@ +"use strict"; + +System.register(["../colors", "../ramp"], function (_export, _context) { + "use strict"; + + var colors, ramp, scheme; + return { + setters: [function (_colors) { + colors = _colors.default; + }, function (_ramp) { + ramp = _ramp.default; + }], + execute: function () { + _export("scheme", scheme = new Array(3).concat("fde0ddfa9fb5c51b8a", "feebe2fbb4b9f768a1ae017e", "feebe2fbb4b9f768a1c51b8a7a0177", "feebe2fcc5c0fa9fb5f768a1c51b8a7a0177", "feebe2fcc5c0fa9fb5f768a1dd3497ae017e7a0177", "fff7f3fde0ddfcc5c0fa9fb5f768a1dd3497ae017e7a0177", "fff7f3fde0ddfcc5c0fa9fb5f768a1dd3497ae017e7a017749006a").map(colors)); + + _export("scheme", scheme); + + _export("default", ramp(scheme)); + } + }; +}); +//# sourceMappingURL=RdPu.js.map diff --git a/dist/libs/d3-scale-chromatic/sequential-multi/RdPu.js.map b/dist/libs/d3-scale-chromatic/sequential-multi/RdPu.js.map new file mode 100644 index 0000000..2fe1715 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-multi/RdPu.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/sequential-multi/RdPu.js"],"names":["colors","ramp","scheme","Array","concat","map"],"mappings":";;;;;;;;AAAOA,Y;;AACAC,U;;;wBAEIC,M,GAAS,IAAIC,KAAJ,CAAU,CAAV,EAAaC,MAAb,CAClB,oBADkB,EAElB,0BAFkB,EAGlB,gCAHkB,EAIlB,sCAJkB,EAKlB,4CALkB,EAMlB,kDANkB,EAOlB,wDAPkB,EAQlBC,GARkB,CAQdL,MARc,C;;;;yBAULC,KAAKC,MAAL,C","file":"RdPu.js","sourcesContent":["import colors from \"../colors\";\nimport ramp from \"../ramp\";\n\nexport var scheme = new Array(3).concat(\n \"fde0ddfa9fb5c51b8a\",\n \"feebe2fbb4b9f768a1ae017e\",\n \"feebe2fbb4b9f768a1c51b8a7a0177\",\n \"feebe2fcc5c0fa9fb5f768a1c51b8a7a0177\",\n \"feebe2fcc5c0fa9fb5f768a1dd3497ae017e7a0177\",\n \"fff7f3fde0ddfcc5c0fa9fb5f768a1dd3497ae017e7a0177\",\n \"fff7f3fde0ddfcc5c0fa9fb5f768a1dd3497ae017e7a017749006a\"\n).map(colors);\n\nexport default ramp(scheme);\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/sequential-multi/YlGn.js b/dist/libs/d3-scale-chromatic/sequential-multi/YlGn.js new file mode 100644 index 0000000..620d490 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-multi/YlGn.js @@ -0,0 +1,22 @@ +"use strict"; + +System.register(["../colors", "../ramp"], function (_export, _context) { + "use strict"; + + var colors, ramp, scheme; + return { + setters: [function (_colors) { + colors = _colors.default; + }, function (_ramp) { + ramp = _ramp.default; + }], + execute: function () { + _export("scheme", scheme = new Array(3).concat("f7fcb9addd8e31a354", "ffffccc2e69978c679238443", "ffffccc2e69978c67931a354006837", "ffffccd9f0a3addd8e78c67931a354006837", "ffffccd9f0a3addd8e78c67941ab5d238443005a32", "ffffe5f7fcb9d9f0a3addd8e78c67941ab5d238443005a32", "ffffe5f7fcb9d9f0a3addd8e78c67941ab5d238443006837004529").map(colors)); + + _export("scheme", scheme); + + _export("default", ramp(scheme)); + } + }; +}); +//# sourceMappingURL=YlGn.js.map diff --git a/dist/libs/d3-scale-chromatic/sequential-multi/YlGn.js.map b/dist/libs/d3-scale-chromatic/sequential-multi/YlGn.js.map new file mode 100644 index 0000000..2a3a26d --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-multi/YlGn.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/sequential-multi/YlGn.js"],"names":["colors","ramp","scheme","Array","concat","map"],"mappings":";;;;;;;;AAAOA,Y;;AACAC,U;;;wBAEIC,M,GAAS,IAAIC,KAAJ,CAAU,CAAV,EAAaC,MAAb,CAClB,oBADkB,EAElB,0BAFkB,EAGlB,gCAHkB,EAIlB,sCAJkB,EAKlB,4CALkB,EAMlB,kDANkB,EAOlB,wDAPkB,EAQlBC,GARkB,CAQdL,MARc,C;;;;yBAULC,KAAKC,MAAL,C","file":"YlGn.js","sourcesContent":["import colors from \"../colors\";\nimport ramp from \"../ramp\";\n\nexport var scheme = new Array(3).concat(\n \"f7fcb9addd8e31a354\",\n \"ffffccc2e69978c679238443\",\n \"ffffccc2e69978c67931a354006837\",\n \"ffffccd9f0a3addd8e78c67931a354006837\",\n \"ffffccd9f0a3addd8e78c67941ab5d238443005a32\",\n \"ffffe5f7fcb9d9f0a3addd8e78c67941ab5d238443005a32\",\n \"ffffe5f7fcb9d9f0a3addd8e78c67941ab5d238443006837004529\"\n).map(colors);\n\nexport default ramp(scheme);\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/sequential-multi/YlGnBu.js b/dist/libs/d3-scale-chromatic/sequential-multi/YlGnBu.js new file mode 100644 index 0000000..c1d1caa --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-multi/YlGnBu.js @@ -0,0 +1,22 @@ +"use strict"; + +System.register(["../colors", "../ramp"], function (_export, _context) { + "use strict"; + + var colors, ramp, scheme; + return { + setters: [function (_colors) { + colors = _colors.default; + }, function (_ramp) { + ramp = _ramp.default; + }], + execute: function () { + _export("scheme", scheme = new Array(3).concat("edf8b17fcdbb2c7fb8", "ffffcca1dab441b6c4225ea8", "ffffcca1dab441b6c42c7fb8253494", "ffffccc7e9b47fcdbb41b6c42c7fb8253494", "ffffccc7e9b47fcdbb41b6c41d91c0225ea80c2c84", "ffffd9edf8b1c7e9b47fcdbb41b6c41d91c0225ea80c2c84", "ffffd9edf8b1c7e9b47fcdbb41b6c41d91c0225ea8253494081d58").map(colors)); + + _export("scheme", scheme); + + _export("default", ramp(scheme)); + } + }; +}); +//# sourceMappingURL=YlGnBu.js.map diff --git a/dist/libs/d3-scale-chromatic/sequential-multi/YlGnBu.js.map b/dist/libs/d3-scale-chromatic/sequential-multi/YlGnBu.js.map new file mode 100644 index 0000000..68ff5da --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-multi/YlGnBu.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/sequential-multi/YlGnBu.js"],"names":["colors","ramp","scheme","Array","concat","map"],"mappings":";;;;;;;;AAAOA,Y;;AACAC,U;;;wBAEIC,M,GAAS,IAAIC,KAAJ,CAAU,CAAV,EAAaC,MAAb,CAClB,oBADkB,EAElB,0BAFkB,EAGlB,gCAHkB,EAIlB,sCAJkB,EAKlB,4CALkB,EAMlB,kDANkB,EAOlB,wDAPkB,EAQlBC,GARkB,CAQdL,MARc,C;;;;yBAULC,KAAKC,MAAL,C","file":"YlGnBu.js","sourcesContent":["import colors from \"../colors\";\nimport ramp from \"../ramp\";\n\nexport var scheme = new Array(3).concat(\n \"edf8b17fcdbb2c7fb8\",\n \"ffffcca1dab441b6c4225ea8\",\n \"ffffcca1dab441b6c42c7fb8253494\",\n \"ffffccc7e9b47fcdbb41b6c42c7fb8253494\",\n \"ffffccc7e9b47fcdbb41b6c41d91c0225ea80c2c84\",\n \"ffffd9edf8b1c7e9b47fcdbb41b6c41d91c0225ea80c2c84\",\n \"ffffd9edf8b1c7e9b47fcdbb41b6c41d91c0225ea8253494081d58\"\n).map(colors);\n\nexport default ramp(scheme);\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/sequential-multi/YlOrBr.js b/dist/libs/d3-scale-chromatic/sequential-multi/YlOrBr.js new file mode 100644 index 0000000..f9258cb --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-multi/YlOrBr.js @@ -0,0 +1,22 @@ +"use strict"; + +System.register(["../colors", "../ramp"], function (_export, _context) { + "use strict"; + + var colors, ramp, scheme; + return { + setters: [function (_colors) { + colors = _colors.default; + }, function (_ramp) { + ramp = _ramp.default; + }], + execute: function () { + _export("scheme", scheme = new Array(3).concat("fff7bcfec44fd95f0e", "ffffd4fed98efe9929cc4c02", "ffffd4fed98efe9929d95f0e993404", "ffffd4fee391fec44ffe9929d95f0e993404", "ffffd4fee391fec44ffe9929ec7014cc4c028c2d04", "ffffe5fff7bcfee391fec44ffe9929ec7014cc4c028c2d04", "ffffe5fff7bcfee391fec44ffe9929ec7014cc4c02993404662506").map(colors)); + + _export("scheme", scheme); + + _export("default", ramp(scheme)); + } + }; +}); +//# sourceMappingURL=YlOrBr.js.map diff --git a/dist/libs/d3-scale-chromatic/sequential-multi/YlOrBr.js.map b/dist/libs/d3-scale-chromatic/sequential-multi/YlOrBr.js.map new file mode 100644 index 0000000..6e29dd0 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-multi/YlOrBr.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/sequential-multi/YlOrBr.js"],"names":["colors","ramp","scheme","Array","concat","map"],"mappings":";;;;;;;;AAAOA,Y;;AACAC,U;;;wBAEIC,M,GAAS,IAAIC,KAAJ,CAAU,CAAV,EAAaC,MAAb,CAClB,oBADkB,EAElB,0BAFkB,EAGlB,gCAHkB,EAIlB,sCAJkB,EAKlB,4CALkB,EAMlB,kDANkB,EAOlB,wDAPkB,EAQlBC,GARkB,CAQdL,MARc,C;;;;yBAULC,KAAKC,MAAL,C","file":"YlOrBr.js","sourcesContent":["import colors from \"../colors\";\nimport ramp from \"../ramp\";\n\nexport var scheme = new Array(3).concat(\n \"fff7bcfec44fd95f0e\",\n \"ffffd4fed98efe9929cc4c02\",\n \"ffffd4fed98efe9929d95f0e993404\",\n \"ffffd4fee391fec44ffe9929d95f0e993404\",\n \"ffffd4fee391fec44ffe9929ec7014cc4c028c2d04\",\n \"ffffe5fff7bcfee391fec44ffe9929ec7014cc4c028c2d04\",\n \"ffffe5fff7bcfee391fec44ffe9929ec7014cc4c02993404662506\"\n).map(colors);\n\nexport default ramp(scheme);\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/sequential-multi/YlOrRd.js b/dist/libs/d3-scale-chromatic/sequential-multi/YlOrRd.js new file mode 100644 index 0000000..90b3d6a --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-multi/YlOrRd.js @@ -0,0 +1,22 @@ +"use strict"; + +System.register(["../colors", "../ramp"], function (_export, _context) { + "use strict"; + + var colors, ramp, scheme; + return { + setters: [function (_colors) { + colors = _colors.default; + }, function (_ramp) { + ramp = _ramp.default; + }], + execute: function () { + _export("scheme", scheme = new Array(3).concat("ffeda0feb24cf03b20", "ffffb2fecc5cfd8d3ce31a1c", "ffffb2fecc5cfd8d3cf03b20bd0026", "ffffb2fed976feb24cfd8d3cf03b20bd0026", "ffffb2fed976feb24cfd8d3cfc4e2ae31a1cb10026", "ffffccffeda0fed976feb24cfd8d3cfc4e2ae31a1cb10026", "ffffccffeda0fed976feb24cfd8d3cfc4e2ae31a1cbd0026800026").map(colors)); + + _export("scheme", scheme); + + _export("default", ramp(scheme)); + } + }; +}); +//# sourceMappingURL=YlOrRd.js.map diff --git a/dist/libs/d3-scale-chromatic/sequential-multi/YlOrRd.js.map b/dist/libs/d3-scale-chromatic/sequential-multi/YlOrRd.js.map new file mode 100644 index 0000000..fef7cad --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-multi/YlOrRd.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/sequential-multi/YlOrRd.js"],"names":["colors","ramp","scheme","Array","concat","map"],"mappings":";;;;;;;;AAAOA,Y;;AACAC,U;;;wBAEIC,M,GAAS,IAAIC,KAAJ,CAAU,CAAV,EAAaC,MAAb,CAClB,oBADkB,EAElB,0BAFkB,EAGlB,gCAHkB,EAIlB,sCAJkB,EAKlB,4CALkB,EAMlB,kDANkB,EAOlB,wDAPkB,EAQlBC,GARkB,CAQdL,MARc,C;;;;yBAULC,KAAKC,MAAL,C","file":"YlOrRd.js","sourcesContent":["import colors from \"../colors\";\nimport ramp from \"../ramp\";\n\nexport var scheme = new Array(3).concat(\n \"ffeda0feb24cf03b20\",\n \"ffffb2fecc5cfd8d3ce31a1c\",\n \"ffffb2fecc5cfd8d3cf03b20bd0026\",\n \"ffffb2fed976feb24cfd8d3cf03b20bd0026\",\n \"ffffb2fed976feb24cfd8d3cfc4e2ae31a1cb10026\",\n \"ffffccffeda0fed976feb24cfd8d3cfc4e2ae31a1cb10026\",\n \"ffffccffeda0fed976feb24cfd8d3cfc4e2ae31a1cbd0026800026\"\n).map(colors);\n\nexport default ramp(scheme);\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/sequential-single/Blues.js b/dist/libs/d3-scale-chromatic/sequential-single/Blues.js new file mode 100644 index 0000000..795b839 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-single/Blues.js @@ -0,0 +1,22 @@ +"use strict"; + +System.register(["../colors", "../ramp"], function (_export, _context) { + "use strict"; + + var colors, ramp, scheme; + return { + setters: [function (_colors) { + colors = _colors.default; + }, function (_ramp) { + ramp = _ramp.default; + }], + execute: function () { + _export("scheme", scheme = new Array(3).concat("deebf79ecae13182bd", "eff3ffbdd7e76baed62171b5", "eff3ffbdd7e76baed63182bd08519c", "eff3ffc6dbef9ecae16baed63182bd08519c", "eff3ffc6dbef9ecae16baed64292c62171b5084594", "f7fbffdeebf7c6dbef9ecae16baed64292c62171b5084594", "f7fbffdeebf7c6dbef9ecae16baed64292c62171b508519c08306b").map(colors)); + + _export("scheme", scheme); + + _export("default", ramp(scheme)); + } + }; +}); +//# sourceMappingURL=Blues.js.map diff --git a/dist/libs/d3-scale-chromatic/sequential-single/Blues.js.map b/dist/libs/d3-scale-chromatic/sequential-single/Blues.js.map new file mode 100644 index 0000000..fb4c968 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-single/Blues.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/sequential-single/Blues.js"],"names":["colors","ramp","scheme","Array","concat","map"],"mappings":";;;;;;;;AAAOA,Y;;AACAC,U;;;wBAEIC,M,GAAS,IAAIC,KAAJ,CAAU,CAAV,EAAaC,MAAb,CAClB,oBADkB,EAElB,0BAFkB,EAGlB,gCAHkB,EAIlB,sCAJkB,EAKlB,4CALkB,EAMlB,kDANkB,EAOlB,wDAPkB,EAQlBC,GARkB,CAQdL,MARc,C;;;;yBAULC,KAAKC,MAAL,C","file":"Blues.js","sourcesContent":["import colors from \"../colors\";\nimport ramp from \"../ramp\";\n\nexport var scheme = new Array(3).concat(\n \"deebf79ecae13182bd\",\n \"eff3ffbdd7e76baed62171b5\",\n \"eff3ffbdd7e76baed63182bd08519c\",\n \"eff3ffc6dbef9ecae16baed63182bd08519c\",\n \"eff3ffc6dbef9ecae16baed64292c62171b5084594\",\n \"f7fbffdeebf7c6dbef9ecae16baed64292c62171b5084594\",\n \"f7fbffdeebf7c6dbef9ecae16baed64292c62171b508519c08306b\"\n).map(colors);\n\nexport default ramp(scheme);\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/sequential-single/Greens.js b/dist/libs/d3-scale-chromatic/sequential-single/Greens.js new file mode 100644 index 0000000..35b0961 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-single/Greens.js @@ -0,0 +1,22 @@ +"use strict"; + +System.register(["../colors", "../ramp"], function (_export, _context) { + "use strict"; + + var colors, ramp, scheme; + return { + setters: [function (_colors) { + colors = _colors.default; + }, function (_ramp) { + ramp = _ramp.default; + }], + execute: function () { + _export("scheme", scheme = new Array(3).concat("e5f5e0a1d99b31a354", "edf8e9bae4b374c476238b45", "edf8e9bae4b374c47631a354006d2c", "edf8e9c7e9c0a1d99b74c47631a354006d2c", "edf8e9c7e9c0a1d99b74c47641ab5d238b45005a32", "f7fcf5e5f5e0c7e9c0a1d99b74c47641ab5d238b45005a32", "f7fcf5e5f5e0c7e9c0a1d99b74c47641ab5d238b45006d2c00441b").map(colors)); + + _export("scheme", scheme); + + _export("default", ramp(scheme)); + } + }; +}); +//# sourceMappingURL=Greens.js.map diff --git a/dist/libs/d3-scale-chromatic/sequential-single/Greens.js.map b/dist/libs/d3-scale-chromatic/sequential-single/Greens.js.map new file mode 100644 index 0000000..87adc53 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-single/Greens.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/sequential-single/Greens.js"],"names":["colors","ramp","scheme","Array","concat","map"],"mappings":";;;;;;;;AAAOA,Y;;AACAC,U;;;wBAEIC,M,GAAS,IAAIC,KAAJ,CAAU,CAAV,EAAaC,MAAb,CAClB,oBADkB,EAElB,0BAFkB,EAGlB,gCAHkB,EAIlB,sCAJkB,EAKlB,4CALkB,EAMlB,kDANkB,EAOlB,wDAPkB,EAQlBC,GARkB,CAQdL,MARc,C;;;;yBAULC,KAAKC,MAAL,C","file":"Greens.js","sourcesContent":["import colors from \"../colors\";\nimport ramp from \"../ramp\";\n\nexport var scheme = new Array(3).concat(\n \"e5f5e0a1d99b31a354\",\n \"edf8e9bae4b374c476238b45\",\n \"edf8e9bae4b374c47631a354006d2c\",\n \"edf8e9c7e9c0a1d99b74c47631a354006d2c\",\n \"edf8e9c7e9c0a1d99b74c47641ab5d238b45005a32\",\n \"f7fcf5e5f5e0c7e9c0a1d99b74c47641ab5d238b45005a32\",\n \"f7fcf5e5f5e0c7e9c0a1d99b74c47641ab5d238b45006d2c00441b\"\n).map(colors);\n\nexport default ramp(scheme);\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/sequential-single/Greys.js b/dist/libs/d3-scale-chromatic/sequential-single/Greys.js new file mode 100644 index 0000000..138bb17 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-single/Greys.js @@ -0,0 +1,22 @@ +"use strict"; + +System.register(["../colors", "../ramp"], function (_export, _context) { + "use strict"; + + var colors, ramp, scheme; + return { + setters: [function (_colors) { + colors = _colors.default; + }, function (_ramp) { + ramp = _ramp.default; + }], + execute: function () { + _export("scheme", scheme = new Array(3).concat("f0f0f0bdbdbd636363", "f7f7f7cccccc969696525252", "f7f7f7cccccc969696636363252525", "f7f7f7d9d9d9bdbdbd969696636363252525", "f7f7f7d9d9d9bdbdbd969696737373525252252525", "fffffff0f0f0d9d9d9bdbdbd969696737373525252252525", "fffffff0f0f0d9d9d9bdbdbd969696737373525252252525000000").map(colors)); + + _export("scheme", scheme); + + _export("default", ramp(scheme)); + } + }; +}); +//# sourceMappingURL=Greys.js.map diff --git a/dist/libs/d3-scale-chromatic/sequential-single/Greys.js.map b/dist/libs/d3-scale-chromatic/sequential-single/Greys.js.map new file mode 100644 index 0000000..21ea9fc --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-single/Greys.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/sequential-single/Greys.js"],"names":["colors","ramp","scheme","Array","concat","map"],"mappings":";;;;;;;;AAAOA,Y;;AACAC,U;;;wBAEIC,M,GAAS,IAAIC,KAAJ,CAAU,CAAV,EAAaC,MAAb,CAClB,oBADkB,EAElB,0BAFkB,EAGlB,gCAHkB,EAIlB,sCAJkB,EAKlB,4CALkB,EAMlB,kDANkB,EAOlB,wDAPkB,EAQlBC,GARkB,CAQdL,MARc,C;;;;yBAULC,KAAKC,MAAL,C","file":"Greys.js","sourcesContent":["import colors from \"../colors\";\nimport ramp from \"../ramp\";\n\nexport var scheme = new Array(3).concat(\n \"f0f0f0bdbdbd636363\",\n \"f7f7f7cccccc969696525252\",\n \"f7f7f7cccccc969696636363252525\",\n \"f7f7f7d9d9d9bdbdbd969696636363252525\",\n \"f7f7f7d9d9d9bdbdbd969696737373525252252525\",\n \"fffffff0f0f0d9d9d9bdbdbd969696737373525252252525\",\n \"fffffff0f0f0d9d9d9bdbdbd969696737373525252252525000000\"\n).map(colors);\n\nexport default ramp(scheme);\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/sequential-single/Oranges.js b/dist/libs/d3-scale-chromatic/sequential-single/Oranges.js new file mode 100644 index 0000000..e11f680 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-single/Oranges.js @@ -0,0 +1,22 @@ +"use strict"; + +System.register(["../colors", "../ramp"], function (_export, _context) { + "use strict"; + + var colors, ramp, scheme; + return { + setters: [function (_colors) { + colors = _colors.default; + }, function (_ramp) { + ramp = _ramp.default; + }], + execute: function () { + _export("scheme", scheme = new Array(3).concat("fee6cefdae6be6550d", "feeddefdbe85fd8d3cd94701", "feeddefdbe85fd8d3ce6550da63603", "feeddefdd0a2fdae6bfd8d3ce6550da63603", "feeddefdd0a2fdae6bfd8d3cf16913d948018c2d04", "fff5ebfee6cefdd0a2fdae6bfd8d3cf16913d948018c2d04", "fff5ebfee6cefdd0a2fdae6bfd8d3cf16913d94801a636037f2704").map(colors)); + + _export("scheme", scheme); + + _export("default", ramp(scheme)); + } + }; +}); +//# sourceMappingURL=Oranges.js.map diff --git a/dist/libs/d3-scale-chromatic/sequential-single/Oranges.js.map b/dist/libs/d3-scale-chromatic/sequential-single/Oranges.js.map new file mode 100644 index 0000000..1b2fafb --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-single/Oranges.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/sequential-single/Oranges.js"],"names":["colors","ramp","scheme","Array","concat","map"],"mappings":";;;;;;;;AAAOA,Y;;AACAC,U;;;wBAEIC,M,GAAS,IAAIC,KAAJ,CAAU,CAAV,EAAaC,MAAb,CAClB,oBADkB,EAElB,0BAFkB,EAGlB,gCAHkB,EAIlB,sCAJkB,EAKlB,4CALkB,EAMlB,kDANkB,EAOlB,wDAPkB,EAQlBC,GARkB,CAQdL,MARc,C;;;;yBAULC,KAAKC,MAAL,C","file":"Oranges.js","sourcesContent":["import colors from \"../colors\";\nimport ramp from \"../ramp\";\n\nexport var scheme = new Array(3).concat(\n \"fee6cefdae6be6550d\",\n \"feeddefdbe85fd8d3cd94701\",\n \"feeddefdbe85fd8d3ce6550da63603\",\n \"feeddefdd0a2fdae6bfd8d3ce6550da63603\",\n \"feeddefdd0a2fdae6bfd8d3cf16913d948018c2d04\",\n \"fff5ebfee6cefdd0a2fdae6bfd8d3cf16913d948018c2d04\",\n \"fff5ebfee6cefdd0a2fdae6bfd8d3cf16913d94801a636037f2704\"\n).map(colors);\n\nexport default ramp(scheme);\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/sequential-single/Purples.js b/dist/libs/d3-scale-chromatic/sequential-single/Purples.js new file mode 100644 index 0000000..b3d71f3 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-single/Purples.js @@ -0,0 +1,22 @@ +"use strict"; + +System.register(["../colors", "../ramp"], function (_export, _context) { + "use strict"; + + var colors, ramp, scheme; + return { + setters: [function (_colors) { + colors = _colors.default; + }, function (_ramp) { + ramp = _ramp.default; + }], + execute: function () { + _export("scheme", scheme = new Array(3).concat("efedf5bcbddc756bb1", "f2f0f7cbc9e29e9ac86a51a3", "f2f0f7cbc9e29e9ac8756bb154278f", "f2f0f7dadaebbcbddc9e9ac8756bb154278f", "f2f0f7dadaebbcbddc9e9ac8807dba6a51a34a1486", "fcfbfdefedf5dadaebbcbddc9e9ac8807dba6a51a34a1486", "fcfbfdefedf5dadaebbcbddc9e9ac8807dba6a51a354278f3f007d").map(colors)); + + _export("scheme", scheme); + + _export("default", ramp(scheme)); + } + }; +}); +//# sourceMappingURL=Purples.js.map diff --git a/dist/libs/d3-scale-chromatic/sequential-single/Purples.js.map b/dist/libs/d3-scale-chromatic/sequential-single/Purples.js.map new file mode 100644 index 0000000..bf8daf5 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-single/Purples.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/sequential-single/Purples.js"],"names":["colors","ramp","scheme","Array","concat","map"],"mappings":";;;;;;;;AAAOA,Y;;AACAC,U;;;wBAEIC,M,GAAS,IAAIC,KAAJ,CAAU,CAAV,EAAaC,MAAb,CAClB,oBADkB,EAElB,0BAFkB,EAGlB,gCAHkB,EAIlB,sCAJkB,EAKlB,4CALkB,EAMlB,kDANkB,EAOlB,wDAPkB,EAQlBC,GARkB,CAQdL,MARc,C;;;;yBAULC,KAAKC,MAAL,C","file":"Purples.js","sourcesContent":["import colors from \"../colors\";\nimport ramp from \"../ramp\";\n\nexport var scheme = new Array(3).concat(\n \"efedf5bcbddc756bb1\",\n \"f2f0f7cbc9e29e9ac86a51a3\",\n \"f2f0f7cbc9e29e9ac8756bb154278f\",\n \"f2f0f7dadaebbcbddc9e9ac8756bb154278f\",\n \"f2f0f7dadaebbcbddc9e9ac8807dba6a51a34a1486\",\n \"fcfbfdefedf5dadaebbcbddc9e9ac8807dba6a51a34a1486\",\n \"fcfbfdefedf5dadaebbcbddc9e9ac8807dba6a51a354278f3f007d\"\n).map(colors);\n\nexport default ramp(scheme);\n"]} \ No newline at end of file diff --git a/dist/libs/d3-scale-chromatic/sequential-single/Reds.js b/dist/libs/d3-scale-chromatic/sequential-single/Reds.js new file mode 100644 index 0000000..8f9b751 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-single/Reds.js @@ -0,0 +1,22 @@ +"use strict"; + +System.register(["../colors", "../ramp"], function (_export, _context) { + "use strict"; + + var colors, ramp, scheme; + return { + setters: [function (_colors) { + colors = _colors.default; + }, function (_ramp) { + ramp = _ramp.default; + }], + execute: function () { + _export("scheme", scheme = new Array(3).concat("fee0d2fc9272de2d26", "fee5d9fcae91fb6a4acb181d", "fee5d9fcae91fb6a4ade2d26a50f15", "fee5d9fcbba1fc9272fb6a4ade2d26a50f15", "fee5d9fcbba1fc9272fb6a4aef3b2ccb181d99000d", "fff5f0fee0d2fcbba1fc9272fb6a4aef3b2ccb181d99000d", "fff5f0fee0d2fcbba1fc9272fb6a4aef3b2ccb181da50f1567000d").map(colors)); + + _export("scheme", scheme); + + _export("default", ramp(scheme)); + } + }; +}); +//# sourceMappingURL=Reds.js.map diff --git a/dist/libs/d3-scale-chromatic/sequential-single/Reds.js.map b/dist/libs/d3-scale-chromatic/sequential-single/Reds.js.map new file mode 100644 index 0000000..246c412 --- /dev/null +++ b/dist/libs/d3-scale-chromatic/sequential-single/Reds.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../../../src/libs/d3-scale-chromatic/sequential-single/Reds.js"],"names":["colors","ramp","scheme","Array","concat","map"],"mappings":";;;;;;;;AAAOA,Y;;AACAC,U;;;wBAEIC,M,GAAS,IAAIC,KAAJ,CAAU,CAAV,EAAaC,MAAb,CAClB,oBADkB,EAElB,0BAFkB,EAGlB,gCAHkB,EAIlB,sCAJkB,EAKlB,4CALkB,EAMlB,kDANkB,EAOlB,wDAPkB,EAQlBC,GARkB,CAQdL,MARc,C;;;;yBAULC,KAAKC,MAAL,C","file":"Reds.js","sourcesContent":["import colors from \"../colors\";\nimport ramp from \"../ramp\";\n\nexport var scheme = new Array(3).concat(\n \"fee0d2fc9272de2d26\",\n \"fee5d9fcae91fb6a4acb181d\",\n \"fee5d9fcae91fb6a4ade2d26a50f15\",\n \"fee5d9fcbba1fc9272fb6a4ade2d26a50f15\",\n \"fee5d9fcbba1fc9272fb6a4aef3b2ccb181d99000d\",\n \"fff5f0fee0d2fcbba1fc9272fb6a4aef3b2ccb181d99000d\",\n \"fff5f0fee0d2fcbba1fc9272fb6a4aef3b2ccb181da50f1567000d\"\n).map(colors);\n\nexport default ramp(scheme);\n"]} \ No newline at end of file diff --git a/dist/module.html b/dist/module.html new file mode 100644 index 0000000..dd55b5f --- /dev/null +++ b/dist/module.html @@ -0,0 +1,15 @@ +