inline-style-editor 1.3.1 → 1.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/docs/index.html CHANGED
@@ -337,7 +337,7 @@
337
337
  if (el.classList.contains('adm1')) {
338
338
  const parentCountry = el.parentNode.getAttribute('id').replace('-adm1', '');
339
339
  const countryElem = document.getElementById(parentCountry);
340
- return [countryElem];
340
+ return [[countryElem, 'Italia']];
341
341
  }
342
342
  return [];
343
343
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "inline-style-editor",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "Update CSS rules or add inline style to elements visualy",
5
5
  "scripts": {
6
6
  "build": "rollup --config",
@@ -177,7 +177,7 @@
177
177
  }
178
178
  } catch(err) {
179
179
  if (!warningDisplayed.has(i)) {
180
- console.log('Style editor: Not able to access', sheets[i].ownerNode, 'sheet. Try CORS loading the sheet if you want to edit it.');
180
+ console.warn('Style editor: Not able to access', sheets[i].ownerNode, 'sheet. Try CORS loading the sheet if you want to edit it.');
181
181
  warningDisplayed.add(i);
182
182
  }
183
183
  }
@@ -207,7 +207,6 @@
207
207
  types.push(typeBorder);
208
208
  types.push(typeBackground);
209
209
  }
210
- console.log(types);
211
210
  if (bringable) bringableToFront.push(true);
212
211
  else bringableToFront.push(null);
213
212
  typesByElem.push(types)
package/src/util/fonts.js CHANGED
@@ -1,20 +1,15 @@
1
- const fontCheck = new Set([
2
- // Windows 10
3
- 'Arial', 'Arial Black', 'Bahnschrift', 'Calibri', 'Cambria', 'Cambria Math', 'Candara', 'Comic Sans MS', 'Consolas', 'Constantia', 'Corbel', 'Courier New', 'Ebrima', 'Franklin Gothic Medium', 'Gabriola', 'Gadugi', 'Georgia', 'HoloLens MDL2 Assets', 'Impact', 'Ink Free', 'Javanese Text', 'Leelawadee UI', 'Lucida Console', 'Lucida Sans Unicode', 'Malgun Gothic', 'Marlett', 'Microsoft Himalaya', 'Microsoft JhengHei', 'Microsoft New Tai Lue', 'Microsoft PhagsPa', 'Microsoft Sans Serif', 'Microsoft Tai Le', 'Microsoft YaHei', 'Microsoft Yi Baiti', 'MingLiU-ExtB', 'Mongolian Baiti', 'MS Gothic', 'MV Boli', 'Myanmar Text', 'Nirmala UI', 'Palatino Linotype', 'Segoe MDL2 Assets', 'Segoe Print', 'Segoe Script', 'Segoe UI', 'Segoe UI Historic', 'Segoe UI Emoji', 'Segoe UI Symbol', 'SimSun', 'Sitka', 'Sylfaen', 'Symbol', 'Tahoma', 'Times New Roman', 'Trebuchet MS', 'Verdana', 'Webdings', 'Wingdings', 'Yu Gothic',
4
- // macOS
5
- 'American Typewriter', 'Andale Mono', 'Arial', 'Arial Black', 'Arial Narrow', 'Arial Rounded MT Bold', 'Arial Unicode MS', 'Avenir', 'Avenir Next', 'Avenir Next Condensed', 'Baskerville', 'Big Caslon', 'Bodoni 72', 'Bodoni 72 Oldstyle', 'Bodoni 72 Smallcaps', 'Bradley Hand', 'Brush Script MT', 'Chalkboard', 'Chalkboard SE', 'Chalkduster', 'Charter', 'Cochin', 'Comic Sans MS', 'Copperplate', 'Courier', 'Courier New', 'Didot', 'DIN Alternate', 'DIN Condensed', 'Futura', 'Geneva', 'Georgia', 'Gill Sans', 'Helvetica', 'Helvetica Neue', 'Herculanum', 'Hoefler Text', 'Impact', 'Lucida Grande', 'Luminari', 'Marker Felt', 'Menlo', 'Microsoft Sans Serif', 'Monaco', 'Noteworthy', 'Optima', 'Palatino', 'Papyrus', 'Phosphate', 'Rockwell', 'Savoye LET', 'SignPainter', 'Skia', 'Snell Roundhand', 'Tahoma', 'Times', 'Times New Roman', 'Trattatello', 'Trebuchet MS', 'Verdana', 'Zapfino',
6
- ].sort());
1
+ const detector = new FontDetector();
7
2
 
8
3
  function getFonts() {
9
- const availableFonts = new Set();
4
+ // const availableFonts = new Set();
10
5
 
11
- for (const font of fontCheck.values()) {
12
- if (document.fonts.check(`12px "${font}"`)) {
13
- availableFonts.add(font);
14
- }
15
- }
6
+ // for (const font of fontCheck.values()) {
7
+ // if (document.fonts.check(`12px "${font}"`)) {
8
+ // availableFonts.add(font);
9
+ // }
10
+ // }
16
11
 
17
- return [...listFonts(), ...availableFonts.values()]
12
+ return [...listFonts(), ...detector.availableFonts]
18
13
  }
19
14
 
20
15
  function listFonts() {
@@ -37,4 +32,71 @@ function listFonts() {
37
32
  return [...new Set(arr)];
38
33
  }
39
34
 
35
+ // https://stackoverflow.com/a/3368855
36
+ class FontDetector {
37
+ constructor() {
38
+ this.fontsToCheck = new Set([
39
+ 'Arial', 'Arial Black', 'Bahnschrift', 'Calibri', 'Cambria', 'Cambria Math', 'Candara', 'Comic Sans MS', 'Consolas', 'Constantia', 'Corbel', 'Courier New', 'Ebrima', 'Franklin Gothic Medium', 'Gabriola', 'Gadugi', 'Georgia', 'HoloLens MDL2 Assets', 'Impact', 'Ink Free', 'Javanese Text', 'Leelawadee UI', 'Lucida Console', 'Lucida Sans Unicode', 'Malgun Gothic', 'Marlett', 'Microsoft Himalaya', 'Microsoft JhengHei', 'Microsoft New Tai Lue', 'Microsoft PhagsPa', 'Microsoft Sans Serif', 'Microsoft Tai Le', 'Microsoft YaHei', 'Microsoft Yi Baiti', 'MingLiU-ExtB', 'Mongolian Baiti', 'MS Gothic', 'MV Boli', 'Myanmar Text', 'Nirmala UI', 'Palatino Linotype', 'Segoe MDL2 Assets', 'Segoe Print', 'Segoe Script', 'Segoe UI', 'Segoe UI Historic', 'Segoe UI Emoji', 'Segoe UI Symbol', 'SimSun', 'Sitka', 'Sylfaen', 'Symbol', 'Tahoma', 'Times New Roman', 'Trebuchet MS', 'Verdana', 'Webdings', 'Wingdings', 'Yu Gothic',
40
+ 'American Typewriter', 'Andale Mono', 'Arial', 'Arial Black', 'Arial Narrow', 'Arial Rounded MT Bold', 'Arial Unicode MS', 'Avenir', 'Avenir Next', 'Avenir Next Condensed', 'Baskerville', 'Big Caslon', 'Bodoni 72', 'Bodoni 72 Oldstyle', 'Bodoni 72 Smallcaps', 'Bradley Hand', 'Brush Script MT', 'Chalkboard', 'Chalkboard SE', 'Chalkduster', 'Charter', 'Cochin', 'Comic Sans MS', 'Copperplate', 'Courier', 'Courier New', 'Didot', 'DIN Alternate', 'DIN Condensed', 'Futura', 'Geneva', 'Georgia', 'Gill Sans', 'Helvetica', 'Helvetica Neue', 'Herculanum', 'Hoefler Text', 'Impact', 'Lucida Grande', 'Luminari', 'Marker Felt', 'Menlo', 'Microsoft Sans Serif', 'Monaco', 'Noteworthy', 'Optima', 'Palatino', 'Papyrus', 'Phosphate', 'Rockwell', 'Savoye LET', 'SignPainter', 'Skia', 'Snell Roundhand', 'Tahoma', 'Times', 'Times New Roman', 'Trattatello', 'Trebuchet MS', 'Verdana', 'Zapfino',
41
+ 'Comic Sans MS', 'Comic Sans', 'Apple Chancery', 'Bradley Hand', 'Brush Script MT', 'Brush Script Std', 'Snell Roundhand', 'URW Chancery L'
42
+ ].sort());
43
+ this.init();
44
+ }
45
+
46
+ init() {
47
+ this.defaultWidth = {};
48
+ this.defaultHeight = {};
49
+ // a font will be compared against all the three default fonts.
50
+ // and if it doesn't match all 3 then that font is not available.
51
+ this.baseFonts = ['monospace', 'sans-serif', 'serif', 'cursive'];
52
+
53
+ // we use m or w because these two characters take up the maximum width.
54
+ // And we use a LLi so that the same matching fonts can get separated
55
+ const testString = "mmmmmmmmmmlli";
56
+
57
+ // we test using 72px font size, we may use any size. I guess larger the better.
58
+ const testSize = '72px';
59
+
60
+ this.container = document.getElementsByTagName("body")[0];
61
+
62
+ // create a SPAN in the document to get the width of the text we use to test
63
+ this.spanTester = document.createElement("span");
64
+ this.spanTester.style.fontSize = testSize;
65
+ this.spanTester.innerHTML = testString;
66
+ this.baseFonts.forEach(font => {
67
+ //get the default width for the three base fonts
68
+ this.spanTester.style.fontFamily = font;
69
+ this.container.appendChild(this.spanTester);
70
+ this.defaultWidth[font] = this.spanTester.offsetWidth; // width for the default font
71
+ this.defaultHeight[font] = this.spanTester.offsetHeight; // height for the default font
72
+ this.container.removeChild(this.spanTester);
73
+ });
74
+ this.detectFonts();
75
+ }
76
+
77
+ fontExists(fontName) {
78
+ let detected = false;
79
+ for (const font of this.baseFonts) {
80
+ this.spanTester.style.fontFamily = fontName + ',' + font; // name of the font along with the base font for fallback.
81
+ this.container.appendChild(this.spanTester);
82
+ const matched = (this.spanTester.offsetWidth != this.defaultWidth[font] || this.spanTester.offsetHeight != this.defaultHeight[font]);
83
+ this.container.removeChild(this.spanTester);
84
+ detected = detected || matched;
85
+ }
86
+ return detected;
87
+ }
88
+
89
+ detectFonts() {
90
+ this.availableFonts = [];
91
+ for (const font of this.fontsToCheck.values()) {
92
+ if (this.fontExists(font)) {
93
+ this.availableFonts.push(font);
94
+ }
95
+ }
96
+ this.availableFonts.sort();
97
+ }
98
+
99
+ };
100
+
101
+
40
102
  export { getFonts };
package/stats.html CHANGED
@@ -4014,7 +4014,25 @@ var drawChart = (function (exports) {
4014
4014
  </script>
4015
4015
  <script>
4016
4016
  /*<!--*/
4017
- const data = {"version":2,"tree":{"name":"root","children":[{"name":"inline-style-editor.js","children":[{"name":"node_modules","children":[{"name":"svelte/internal/index.mjs","uid":"b18d-106"},{"name":"d3-array/src","children":[{"uid":"b18d-110","name":"ascending.js"},{"uid":"b18d-112","name":"descending.js"},{"uid":"b18d-114","name":"bisector.js"},{"uid":"b18d-116","name":"number.js"},{"uid":"b18d-118","name":"bisect.js"},{"uid":"b18d-120","name":"count.js"},{"uid":"b18d-122","name":"extent.js"},{"uid":"b18d-124","name":"ticks.js"},{"name":"threshold/sturges.js","uid":"b18d-126"}]},{"name":"d3-contour/src","children":[{"uid":"b18d-128","name":"array.js"},{"uid":"b18d-130","name":"ascending.js"},{"uid":"b18d-132","name":"area.js"},{"uid":"b18d-134","name":"constant.js"},{"uid":"b18d-136","name":"contains.js"},{"uid":"b18d-138","name":"noop.js"},{"uid":"b18d-140","name":"contours.js"}]},{"name":"vanilla-picker/dist/vanilla-picker.csp.mjs","uid":"b18d-144"}]},{"name":"src","children":[{"name":"util","children":[{"uid":"b18d-108","name":"util.js"},{"uid":"b18d-142","name":"boxesContour.js"},{"uid":"b18d-148","name":"fonts.js"}]},{"name":"components","children":[{"uid":"b18d-146","name":"ColorPicker.svelte"},{"uid":"b18d-150","name":"InlineStyleEditor.svelte"}]},{"uid":"b18d-152","name":"index.js"}]}]}],"isRoot":true},"nodeParts":{"b18d-106":{"renderedLength":12388,"gzipLength":0,"brotliLength":0,"mainUid":"b18d-105"},"b18d-108":{"renderedLength":674,"gzipLength":0,"brotliLength":0,"mainUid":"b18d-107"},"b18d-110":{"renderedLength":125,"gzipLength":0,"brotliLength":0,"mainUid":"b18d-109"},"b18d-112":{"renderedLength":156,"gzipLength":0,"brotliLength":0,"mainUid":"b18d-111"},"b18d-114":{"renderedLength":1664,"gzipLength":0,"brotliLength":0,"mainUid":"b18d-113"},"b18d-116":{"renderedLength":66,"gzipLength":0,"brotliLength":0,"mainUid":"b18d-115"},"b18d-118":{"renderedLength":55,"gzipLength":0,"brotliLength":0,"mainUid":"b18d-117"},"b18d-120":{"renderedLength":480,"gzipLength":0,"brotliLength":0,"mainUid":"b18d-119"},"b18d-122":{"renderedLength":823,"gzipLength":0,"brotliLength":0,"mainUid":"b18d-121"},"b18d-124":{"renderedLength":1901,"gzipLength":0,"brotliLength":0,"mainUid":"b18d-123"},"b18d-126":{"renderedLength":109,"gzipLength":0,"brotliLength":0,"mainUid":"b18d-125"},"b18d-128":{"renderedLength":62,"gzipLength":0,"brotliLength":0,"mainUid":"b18d-127"},"b18d-130":{"renderedLength":56,"gzipLength":0,"brotliLength":0,"mainUid":"b18d-129"},"b18d-132":{"renderedLength":239,"gzipLength":0,"brotliLength":0,"mainUid":"b18d-131"},"b18d-134":{"renderedLength":32,"gzipLength":0,"brotliLength":0,"mainUid":"b18d-133"},"b18d-136":{"renderedLength":956,"gzipLength":0,"brotliLength":0,"mainUid":"b18d-135"},"b18d-138":{"renderedLength":22,"gzipLength":0,"brotliLength":0,"mainUid":"b18d-137"},"b18d-140":{"renderedLength":6572,"gzipLength":0,"brotliLength":0,"mainUid":"b18d-139"},"b18d-142":{"renderedLength":3648,"gzipLength":0,"brotliLength":0,"mainUid":"b18d-141"},"b18d-144":{"renderedLength":34619,"gzipLength":0,"brotliLength":0,"mainUid":"b18d-143"},"b18d-146":{"renderedLength":2497,"gzipLength":0,"brotliLength":0,"mainUid":"b18d-145"},"b18d-148":{"renderedLength":2681,"gzipLength":0,"brotliLength":0,"mainUid":"b18d-147"},"b18d-150":{"renderedLength":58221,"gzipLength":0,"brotliLength":0,"mainUid":"b18d-149"},"b18d-152":{"renderedLength":153,"gzipLength":0,"brotliLength":0,"mainUid":"b18d-151"}},"nodeMetas":{"b18d-105":{"id":"/node_modules/svelte/internal/index.mjs","moduleParts":{"inline-style-editor.js":"b18d-106"},"imported":[],"importedBy":[{"uid":"b18d-149"},{"uid":"b18d-153"},{"uid":"b18d-145"}]},"b18d-107":{"id":"/src/util/util.js","moduleParts":{"inline-style-editor.js":"b18d-108"},"imported":[],"importedBy":[{"uid":"b18d-149"}]},"b18d-109":{"id":"/node_modules/d3-array/src/ascending.js","moduleParts":{"inline-style-editor.js":"b18d-110"},"imported":[],"importedBy":[{"uid":"b18d-157"},{"uid":"b18d-117"},{"uid":"b18d-113"},{"uid":"b18d-164"},{"uid":"b18d-182"},{"uid":"b18d-183"},{"uid":"b18d-184"},{"uid":"b18d-185"},{"uid":"b18d-186"},{"uid":"b18d-199"}]},"b18d-111":{"id":"/node_modules/d3-array/src/descending.js","moduleParts":{"inline-style-editor.js":"b18d-112"},"imported":[],"importedBy":[{"uid":"b18d-157"},{"uid":"b18d-113"}]},"b18d-113":{"id":"/node_modules/d3-array/src/bisector.js","moduleParts":{"inline-style-editor.js":"b18d-114"},"imported":[{"uid":"b18d-109"},{"uid":"b18d-111"}],"importedBy":[{"uid":"b18d-157"},{"uid":"b18d-117"}]},"b18d-115":{"id":"/node_modules/d3-array/src/number.js","moduleParts":{"inline-style-editor.js":"b18d-116"},"imported":[],"importedBy":[{"uid":"b18d-117"},{"uid":"b18d-179"}]},"b18d-117":{"id":"/node_modules/d3-array/src/bisect.js","moduleParts":{"inline-style-editor.js":"b18d-118"},"imported":[{"uid":"b18d-109"},{"uid":"b18d-113"},{"uid":"b18d-115"}],"importedBy":[{"uid":"b18d-157"},{"uid":"b18d-165"}]},"b18d-119":{"id":"/node_modules/d3-array/src/count.js","moduleParts":{"inline-style-editor.js":"b18d-120"},"imported":[],"importedBy":[{"uid":"b18d-157"},{"uid":"b18d-166"},{"uid":"b18d-167"},{"uid":"b18d-125"}]},"b18d-121":{"id":"/node_modules/d3-array/src/extent.js","moduleParts":{"inline-style-editor.js":"b18d-122"},"imported":[],"importedBy":[{"uid":"b18d-157"},{"uid":"b18d-165"}]},"b18d-123":{"id":"/node_modules/d3-array/src/ticks.js","moduleParts":{"inline-style-editor.js":"b18d-124"},"imported":[],"importedBy":[{"uid":"b18d-157"},{"uid":"b18d-165"},{"uid":"b18d-176"}]},"b18d-125":{"id":"/node_modules/d3-array/src/threshold/sturges.js","moduleParts":{"inline-style-editor.js":"b18d-126"},"imported":[{"uid":"b18d-119"}],"importedBy":[{"uid":"b18d-157"},{"uid":"b18d-165"}]},"b18d-127":{"id":"/node_modules/d3-contour/src/array.js","moduleParts":{"inline-style-editor.js":"b18d-128"},"imported":[],"importedBy":[{"uid":"b18d-139"},{"uid":"b18d-156"}]},"b18d-129":{"id":"/node_modules/d3-contour/src/ascending.js","moduleParts":{"inline-style-editor.js":"b18d-130"},"imported":[],"importedBy":[{"uid":"b18d-139"}]},"b18d-131":{"id":"/node_modules/d3-contour/src/area.js","moduleParts":{"inline-style-editor.js":"b18d-132"},"imported":[],"importedBy":[{"uid":"b18d-139"}]},"b18d-133":{"id":"/node_modules/d3-contour/src/constant.js","moduleParts":{"inline-style-editor.js":"b18d-134"},"imported":[],"importedBy":[{"uid":"b18d-139"},{"uid":"b18d-156"}]},"b18d-135":{"id":"/node_modules/d3-contour/src/contains.js","moduleParts":{"inline-style-editor.js":"b18d-136"},"imported":[],"importedBy":[{"uid":"b18d-139"}]},"b18d-137":{"id":"/node_modules/d3-contour/src/noop.js","moduleParts":{"inline-style-editor.js":"b18d-138"},"imported":[],"importedBy":[{"uid":"b18d-139"}]},"b18d-139":{"id":"/node_modules/d3-contour/src/contours.js","moduleParts":{"inline-style-editor.js":"b18d-140"},"imported":[{"uid":"b18d-157"},{"uid":"b18d-127"},{"uid":"b18d-129"},{"uid":"b18d-131"},{"uid":"b18d-133"},{"uid":"b18d-135"},{"uid":"b18d-137"}],"importedBy":[{"uid":"b18d-155"},{"uid":"b18d-156"}]},"b18d-141":{"id":"/src/util/boxesContour.js","moduleParts":{"inline-style-editor.js":"b18d-142"},"imported":[{"uid":"b18d-155"}],"importedBy":[{"uid":"b18d-149"}]},"b18d-143":{"id":"/node_modules/vanilla-picker/dist/vanilla-picker.csp.mjs","moduleParts":{"inline-style-editor.js":"b18d-144"},"imported":[],"importedBy":[{"uid":"b18d-145"}]},"b18d-145":{"id":"/src/components/ColorPicker.svelte","moduleParts":{"inline-style-editor.js":"b18d-146"},"imported":[{"uid":"b18d-105"},{"uid":"b18d-143"},{"uid":"b18d-153"}],"importedBy":[{"uid":"b18d-149"}]},"b18d-147":{"id":"/src/util/fonts.js","moduleParts":{"inline-style-editor.js":"b18d-148"},"imported":[],"importedBy":[{"uid":"b18d-149"}]},"b18d-149":{"id":"/src/components/InlineStyleEditor.svelte","moduleParts":{"inline-style-editor.js":"b18d-150"},"imported":[{"uid":"b18d-105"},{"uid":"b18d-153"},{"uid":"b18d-154"},{"uid":"b18d-107"},{"uid":"b18d-141"},{"uid":"b18d-145"},{"uid":"b18d-147"}],"importedBy":[{"uid":"b18d-151"}]},"b18d-151":{"id":"/src/index.js","moduleParts":{"inline-style-editor.js":"b18d-152"},"imported":[{"uid":"b18d-149"}],"importedBy":[],"isEntry":true},"b18d-153":{"id":"/node_modules/svelte/index.mjs","moduleParts":{},"imported":[{"uid":"b18d-105"}],"importedBy":[{"uid":"b18d-149"},{"uid":"b18d-145"}]},"b18d-154":{"id":"/src/assets/index.scss","moduleParts":{},"imported":[],"importedBy":[{"uid":"b18d-149"}]},"b18d-155":{"id":"/node_modules/d3-contour/src/index.js","moduleParts":{},"imported":[{"uid":"b18d-139"},{"uid":"b18d-156"}],"importedBy":[{"uid":"b18d-141"}]},"b18d-156":{"id":"/node_modules/d3-contour/src/density.js","moduleParts":{},"imported":[{"uid":"b18d-157"},{"uid":"b18d-127"},{"uid":"b18d-133"},{"uid":"b18d-139"}],"importedBy":[{"uid":"b18d-155"}]},"b18d-157":{"id":"/node_modules/d3-array/src/index.js","moduleParts":{},"imported":[{"uid":"b18d-117"},{"uid":"b18d-109"},{"uid":"b18d-113"},{"uid":"b18d-158"},{"uid":"b18d-119"},{"uid":"b18d-159"},{"uid":"b18d-160"},{"uid":"b18d-111"},{"uid":"b18d-161"},{"uid":"b18d-121"},{"uid":"b18d-162"},{"uid":"b18d-163"},{"uid":"b18d-164"},{"uid":"b18d-165"},{"uid":"b18d-166"},{"uid":"b18d-167"},{"uid":"b18d-125"},{"uid":"b18d-168"},{"uid":"b18d-169"},{"uid":"b18d-170"},{"uid":"b18d-171"},{"uid":"b18d-172"},{"uid":"b18d-173"},{"uid":"b18d-174"},{"uid":"b18d-175"},{"uid":"b18d-176"},{"uid":"b18d-177"},{"uid":"b18d-178"},{"uid":"b18d-179"},{"uid":"b18d-180"},{"uid":"b18d-181"},{"uid":"b18d-182"},{"uid":"b18d-183"},{"uid":"b18d-184"},{"uid":"b18d-185"},{"uid":"b18d-186"},{"uid":"b18d-187"},{"uid":"b18d-188"},{"uid":"b18d-189"},{"uid":"b18d-123"},{"uid":"b18d-190"},{"uid":"b18d-191"},{"uid":"b18d-192"},{"uid":"b18d-193"},{"uid":"b18d-194"},{"uid":"b18d-195"},{"uid":"b18d-196"},{"uid":"b18d-197"},{"uid":"b18d-198"},{"uid":"b18d-199"},{"uid":"b18d-200"},{"uid":"b18d-201"},{"uid":"b18d-202"},{"uid":"b18d-203"},{"uid":"b18d-204"},{"uid":"b18d-205"},{"uid":"b18d-206"}],"importedBy":[{"uid":"b18d-139"},{"uid":"b18d-156"}]},"b18d-158":{"id":"/node_modules/d3-array/src/blur.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"b18d-157"}]},"b18d-159":{"id":"/node_modules/d3-array/src/cross.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"b18d-157"}]},"b18d-160":{"id":"/node_modules/d3-array/src/cumsum.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"b18d-157"}]},"b18d-161":{"id":"/node_modules/d3-array/src/deviation.js","moduleParts":{},"imported":[{"uid":"b18d-191"}],"importedBy":[{"uid":"b18d-157"},{"uid":"b18d-167"}]},"b18d-162":{"id":"/node_modules/d3-array/src/fsum.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"b18d-157"}]},"b18d-163":{"id":"/node_modules/d3-array/src/group.js","moduleParts":{},"imported":[{"uid":"b18d-206"},{"uid":"b18d-207"}],"importedBy":[{"uid":"b18d-157"},{"uid":"b18d-164"}]},"b18d-164":{"id":"/node_modules/d3-array/src/groupSort.js","moduleParts":{},"imported":[{"uid":"b18d-109"},{"uid":"b18d-163"},{"uid":"b18d-199"}],"importedBy":[{"uid":"b18d-157"}]},"b18d-165":{"id":"/node_modules/d3-array/src/bin.js","moduleParts":{},"imported":[{"uid":"b18d-208"},{"uid":"b18d-117"},{"uid":"b18d-209"},{"uid":"b18d-121"},{"uid":"b18d-207"},{"uid":"b18d-176"},{"uid":"b18d-123"},{"uid":"b18d-125"}],"importedBy":[{"uid":"b18d-157"}]},"b18d-166":{"id":"/node_modules/d3-array/src/threshold/freedmanDiaconis.js","moduleParts":{},"imported":[{"uid":"b18d-119"},{"uid":"b18d-179"}],"importedBy":[{"uid":"b18d-157"}]},"b18d-167":{"id":"/node_modules/d3-array/src/threshold/scott.js","moduleParts":{},"imported":[{"uid":"b18d-119"},{"uid":"b18d-161"}],"importedBy":[{"uid":"b18d-157"}]},"b18d-168":{"id":"/node_modules/d3-array/src/max.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"b18d-157"},{"uid":"b18d-179"}]},"b18d-169":{"id":"/node_modules/d3-array/src/maxIndex.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"b18d-157"},{"uid":"b18d-179"},{"uid":"b18d-186"}]},"b18d-170":{"id":"/node_modules/d3-array/src/mean.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"b18d-157"}]},"b18d-171":{"id":"/node_modules/d3-array/src/median.js","moduleParts":{},"imported":[{"uid":"b18d-179"}],"importedBy":[{"uid":"b18d-157"}]},"b18d-172":{"id":"/node_modules/d3-array/src/merge.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"b18d-157"}]},"b18d-173":{"id":"/node_modules/d3-array/src/min.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"b18d-157"},{"uid":"b18d-179"},{"uid":"b18d-190"}]},"b18d-174":{"id":"/node_modules/d3-array/src/minIndex.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"b18d-157"},{"uid":"b18d-179"},{"uid":"b18d-184"}]},"b18d-175":{"id":"/node_modules/d3-array/src/mode.js","moduleParts":{},"imported":[{"uid":"b18d-206"}],"importedBy":[{"uid":"b18d-157"}]},"b18d-176":{"id":"/node_modules/d3-array/src/nice.js","moduleParts":{},"imported":[{"uid":"b18d-123"}],"importedBy":[{"uid":"b18d-157"},{"uid":"b18d-165"}]},"b18d-177":{"id":"/node_modules/d3-array/src/pairs.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"b18d-157"}]},"b18d-178":{"id":"/node_modules/d3-array/src/permute.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"b18d-157"},{"uid":"b18d-199"}]},"b18d-179":{"id":"/node_modules/d3-array/src/quantile.js","moduleParts":{},"imported":[{"uid":"b18d-168"},{"uid":"b18d-169"},{"uid":"b18d-173"},{"uid":"b18d-174"},{"uid":"b18d-180"},{"uid":"b18d-115"},{"uid":"b18d-199"},{"uid":"b18d-185"}],"importedBy":[{"uid":"b18d-157"},{"uid":"b18d-166"},{"uid":"b18d-171"}]},"b18d-180":{"id":"/node_modules/d3-array/src/quickselect.js","moduleParts":{},"imported":[{"uid":"b18d-199"}],"importedBy":[{"uid":"b18d-157"},{"uid":"b18d-179"}]},"b18d-181":{"id":"/node_modules/d3-array/src/range.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"b18d-157"}]},"b18d-182":{"id":"/node_modules/d3-array/src/rank.js","moduleParts":{},"imported":[{"uid":"b18d-109"},{"uid":"b18d-199"}],"importedBy":[{"uid":"b18d-157"}]},"b18d-183":{"id":"/node_modules/d3-array/src/least.js","moduleParts":{},"imported":[{"uid":"b18d-109"}],"importedBy":[{"uid":"b18d-157"}]},"b18d-184":{"id":"/node_modules/d3-array/src/leastIndex.js","moduleParts":{},"imported":[{"uid":"b18d-109"},{"uid":"b18d-174"}],"importedBy":[{"uid":"b18d-157"},{"uid":"b18d-187"}]},"b18d-185":{"id":"/node_modules/d3-array/src/greatest.js","moduleParts":{},"imported":[{"uid":"b18d-109"}],"importedBy":[{"uid":"b18d-157"},{"uid":"b18d-179"}]},"b18d-186":{"id":"/node_modules/d3-array/src/greatestIndex.js","moduleParts":{},"imported":[{"uid":"b18d-109"},{"uid":"b18d-169"}],"importedBy":[{"uid":"b18d-157"}]},"b18d-187":{"id":"/node_modules/d3-array/src/scan.js","moduleParts":{},"imported":[{"uid":"b18d-184"}],"importedBy":[{"uid":"b18d-157"}]},"b18d-188":{"id":"/node_modules/d3-array/src/shuffle.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"b18d-157"}]},"b18d-189":{"id":"/node_modules/d3-array/src/sum.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"b18d-157"}]},"b18d-190":{"id":"/node_modules/d3-array/src/transpose.js","moduleParts":{},"imported":[{"uid":"b18d-173"}],"importedBy":[{"uid":"b18d-157"},{"uid":"b18d-192"}]},"b18d-191":{"id":"/node_modules/d3-array/src/variance.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"b18d-157"},{"uid":"b18d-161"}]},"b18d-192":{"id":"/node_modules/d3-array/src/zip.js","moduleParts":{},"imported":[{"uid":"b18d-190"}],"importedBy":[{"uid":"b18d-157"}]},"b18d-193":{"id":"/node_modules/d3-array/src/every.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"b18d-157"}]},"b18d-194":{"id":"/node_modules/d3-array/src/some.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"b18d-157"}]},"b18d-195":{"id":"/node_modules/d3-array/src/filter.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"b18d-157"}]},"b18d-196":{"id":"/node_modules/d3-array/src/map.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"b18d-157"}]},"b18d-197":{"id":"/node_modules/d3-array/src/reduce.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"b18d-157"}]},"b18d-198":{"id":"/node_modules/d3-array/src/reverse.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"b18d-157"}]},"b18d-199":{"id":"/node_modules/d3-array/src/sort.js","moduleParts":{},"imported":[{"uid":"b18d-109"},{"uid":"b18d-178"}],"importedBy":[{"uid":"b18d-157"},{"uid":"b18d-164"},{"uid":"b18d-179"},{"uid":"b18d-180"},{"uid":"b18d-182"}]},"b18d-200":{"id":"/node_modules/d3-array/src/difference.js","moduleParts":{},"imported":[{"uid":"b18d-206"}],"importedBy":[{"uid":"b18d-157"}]},"b18d-201":{"id":"/node_modules/d3-array/src/disjoint.js","moduleParts":{},"imported":[{"uid":"b18d-206"}],"importedBy":[{"uid":"b18d-157"}]},"b18d-202":{"id":"/node_modules/d3-array/src/intersection.js","moduleParts":{},"imported":[{"uid":"b18d-206"}],"importedBy":[{"uid":"b18d-157"}]},"b18d-203":{"id":"/node_modules/d3-array/src/subset.js","moduleParts":{},"imported":[{"uid":"b18d-204"}],"importedBy":[{"uid":"b18d-157"}]},"b18d-204":{"id":"/node_modules/d3-array/src/superset.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"b18d-157"},{"uid":"b18d-203"}]},"b18d-205":{"id":"/node_modules/d3-array/src/union.js","moduleParts":{},"imported":[{"uid":"b18d-206"}],"importedBy":[{"uid":"b18d-157"}]},"b18d-206":{"id":"/node_modules/internmap/src/index.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"b18d-157"},{"uid":"b18d-163"},{"uid":"b18d-175"},{"uid":"b18d-200"},{"uid":"b18d-201"},{"uid":"b18d-202"},{"uid":"b18d-205"}]},"b18d-207":{"id":"/node_modules/d3-array/src/identity.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"b18d-163"},{"uid":"b18d-165"}]},"b18d-208":{"id":"/node_modules/d3-array/src/array.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"b18d-165"}]},"b18d-209":{"id":"/node_modules/d3-array/src/constant.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"b18d-165"}]}},"env":{"rollup":"2.78.1"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
4017
+ const data = {"version":2,"tree":{"name":"root","children":[{"name":"inline-style-editor.mjs","children":[{"name":"node_modules","children":[{"name":"svelte/internal/index.mjs","uid":"d028-1"},{"name":"d3-array/src","children":[{"uid":"d028-5","name":"ascending.js"},{"uid":"d028-7","name":"descending.js"},{"uid":"d028-9","name":"bisector.js"},{"uid":"d028-11","name":"number.js"},{"uid":"d028-13","name":"bisect.js"},{"uid":"d028-15","name":"count.js"},{"uid":"d028-17","name":"extent.js"},{"uid":"d028-19","name":"ticks.js"},{"name":"threshold/sturges.js","uid":"d028-21"}]},{"name":"d3-contour/src","children":[{"uid":"d028-23","name":"array.js"},{"uid":"d028-25","name":"ascending.js"},{"uid":"d028-27","name":"area.js"},{"uid":"d028-29","name":"constant.js"},{"uid":"d028-31","name":"contains.js"},{"uid":"d028-33","name":"noop.js"},{"uid":"d028-35","name":"contours.js"}]},{"name":"vanilla-picker/dist/vanilla-picker.csp.mjs","uid":"d028-39"}]},{"name":"src","children":[{"name":"util","children":[{"uid":"d028-3","name":"util.js"},{"uid":"d028-37","name":"boxesContour.js"},{"uid":"d028-43","name":"fonts.js"}]},{"name":"components","children":[{"uid":"d028-41","name":"ColorPicker.svelte"},{"uid":"d028-45","name":"InlineStyleEditor.svelte"}]},{"uid":"d028-47","name":"index.js"}]}]}],"isRoot":true},"nodeParts":{"d028-1":{"renderedLength":11004,"gzipLength":0,"brotliLength":0,"mainUid":"d028-0"},"d028-3":{"renderedLength":594,"gzipLength":0,"brotliLength":0,"mainUid":"d028-2"},"d028-5":{"renderedLength":113,"gzipLength":0,"brotliLength":0,"mainUid":"d028-4"},"d028-7":{"renderedLength":128,"gzipLength":0,"brotliLength":0,"mainUid":"d028-6"},"d028-9":{"renderedLength":1476,"gzipLength":0,"brotliLength":0,"mainUid":"d028-8"},"d028-11":{"renderedLength":54,"gzipLength":0,"brotliLength":0,"mainUid":"d028-10"},"d028-13":{"renderedLength":47,"gzipLength":0,"brotliLength":0,"mainUid":"d028-12"},"d028-15":{"renderedLength":408,"gzipLength":0,"brotliLength":0,"mainUid":"d028-14"},"d028-17":{"renderedLength":707,"gzipLength":0,"brotliLength":0,"mainUid":"d028-16"},"d028-19":{"renderedLength":1713,"gzipLength":0,"brotliLength":0,"mainUid":"d028-18"},"d028-21":{"renderedLength":97,"gzipLength":0,"brotliLength":0,"mainUid":"d028-20"},"d028-23":{"renderedLength":54,"gzipLength":0,"brotliLength":0,"mainUid":"d028-22"},"d028-25":{"renderedLength":44,"gzipLength":0,"brotliLength":0,"mainUid":"d028-24"},"d028-27":{"renderedLength":219,"gzipLength":0,"brotliLength":0,"mainUid":"d028-26"},"d028-29":{"renderedLength":28,"gzipLength":0,"brotliLength":0,"mainUid":"d028-28"},"d028-31":{"renderedLength":864,"gzipLength":0,"brotliLength":0,"mainUid":"d028-30"},"d028-33":{"renderedLength":18,"gzipLength":0,"brotliLength":0,"mainUid":"d028-32"},"d028-35":{"renderedLength":5884,"gzipLength":0,"brotliLength":0,"mainUid":"d028-34"},"d028-37":{"renderedLength":3328,"gzipLength":0,"brotliLength":0,"mainUid":"d028-36"},"d028-39":{"renderedLength":31283,"gzipLength":0,"brotliLength":0,"mainUid":"d028-38"},"d028-41":{"renderedLength":2125,"gzipLength":0,"brotliLength":0,"mainUid":"d028-40"},"d028-43":{"renderedLength":5191,"gzipLength":0,"brotliLength":0,"mainUid":"d028-42"},"d028-45":{"renderedLength":51338,"gzipLength":0,"brotliLength":0,"mainUid":"d028-44"},"d028-47":{"renderedLength":133,"gzipLength":0,"brotliLength":0,"mainUid":"d028-46"}},"nodeMetas":{"d028-0":{"id":"/node_modules/svelte/internal/index.mjs","moduleParts":{"inline-style-editor.mjs":"d028-1"},"imported":[],"importedBy":[{"uid":"d028-44"},{"uid":"d028-48"},{"uid":"d028-40"}]},"d028-2":{"id":"/src/util/util.js","moduleParts":{"inline-style-editor.mjs":"d028-3"},"imported":[],"importedBy":[{"uid":"d028-44"}]},"d028-4":{"id":"/node_modules/d3-array/src/ascending.js","moduleParts":{"inline-style-editor.mjs":"d028-5"},"imported":[],"importedBy":[{"uid":"d028-52"},{"uid":"d028-12"},{"uid":"d028-8"},{"uid":"d028-59"},{"uid":"d028-77"},{"uid":"d028-78"},{"uid":"d028-79"},{"uid":"d028-80"},{"uid":"d028-81"},{"uid":"d028-94"}]},"d028-6":{"id":"/node_modules/d3-array/src/descending.js","moduleParts":{"inline-style-editor.mjs":"d028-7"},"imported":[],"importedBy":[{"uid":"d028-52"},{"uid":"d028-8"}]},"d028-8":{"id":"/node_modules/d3-array/src/bisector.js","moduleParts":{"inline-style-editor.mjs":"d028-9"},"imported":[{"uid":"d028-4"},{"uid":"d028-6"}],"importedBy":[{"uid":"d028-52"},{"uid":"d028-12"}]},"d028-10":{"id":"/node_modules/d3-array/src/number.js","moduleParts":{"inline-style-editor.mjs":"d028-11"},"imported":[],"importedBy":[{"uid":"d028-12"},{"uid":"d028-74"}]},"d028-12":{"id":"/node_modules/d3-array/src/bisect.js","moduleParts":{"inline-style-editor.mjs":"d028-13"},"imported":[{"uid":"d028-4"},{"uid":"d028-8"},{"uid":"d028-10"}],"importedBy":[{"uid":"d028-52"},{"uid":"d028-60"}]},"d028-14":{"id":"/node_modules/d3-array/src/count.js","moduleParts":{"inline-style-editor.mjs":"d028-15"},"imported":[],"importedBy":[{"uid":"d028-52"},{"uid":"d028-61"},{"uid":"d028-62"},{"uid":"d028-20"}]},"d028-16":{"id":"/node_modules/d3-array/src/extent.js","moduleParts":{"inline-style-editor.mjs":"d028-17"},"imported":[],"importedBy":[{"uid":"d028-52"},{"uid":"d028-60"}]},"d028-18":{"id":"/node_modules/d3-array/src/ticks.js","moduleParts":{"inline-style-editor.mjs":"d028-19"},"imported":[],"importedBy":[{"uid":"d028-52"},{"uid":"d028-60"},{"uid":"d028-71"}]},"d028-20":{"id":"/node_modules/d3-array/src/threshold/sturges.js","moduleParts":{"inline-style-editor.mjs":"d028-21"},"imported":[{"uid":"d028-14"}],"importedBy":[{"uid":"d028-52"},{"uid":"d028-60"}]},"d028-22":{"id":"/node_modules/d3-contour/src/array.js","moduleParts":{"inline-style-editor.mjs":"d028-23"},"imported":[],"importedBy":[{"uid":"d028-34"},{"uid":"d028-51"}]},"d028-24":{"id":"/node_modules/d3-contour/src/ascending.js","moduleParts":{"inline-style-editor.mjs":"d028-25"},"imported":[],"importedBy":[{"uid":"d028-34"}]},"d028-26":{"id":"/node_modules/d3-contour/src/area.js","moduleParts":{"inline-style-editor.mjs":"d028-27"},"imported":[],"importedBy":[{"uid":"d028-34"}]},"d028-28":{"id":"/node_modules/d3-contour/src/constant.js","moduleParts":{"inline-style-editor.mjs":"d028-29"},"imported":[],"importedBy":[{"uid":"d028-34"},{"uid":"d028-51"}]},"d028-30":{"id":"/node_modules/d3-contour/src/contains.js","moduleParts":{"inline-style-editor.mjs":"d028-31"},"imported":[],"importedBy":[{"uid":"d028-34"}]},"d028-32":{"id":"/node_modules/d3-contour/src/noop.js","moduleParts":{"inline-style-editor.mjs":"d028-33"},"imported":[],"importedBy":[{"uid":"d028-34"}]},"d028-34":{"id":"/node_modules/d3-contour/src/contours.js","moduleParts":{"inline-style-editor.mjs":"d028-35"},"imported":[{"uid":"d028-52"},{"uid":"d028-22"},{"uid":"d028-24"},{"uid":"d028-26"},{"uid":"d028-28"},{"uid":"d028-30"},{"uid":"d028-32"}],"importedBy":[{"uid":"d028-50"},{"uid":"d028-51"}]},"d028-36":{"id":"/src/util/boxesContour.js","moduleParts":{"inline-style-editor.mjs":"d028-37"},"imported":[{"uid":"d028-50"}],"importedBy":[{"uid":"d028-44"}]},"d028-38":{"id":"/node_modules/vanilla-picker/dist/vanilla-picker.csp.mjs","moduleParts":{"inline-style-editor.mjs":"d028-39"},"imported":[],"importedBy":[{"uid":"d028-40"}]},"d028-40":{"id":"/src/components/ColorPicker.svelte","moduleParts":{"inline-style-editor.mjs":"d028-41"},"imported":[{"uid":"d028-0"},{"uid":"d028-38"},{"uid":"d028-48"}],"importedBy":[{"uid":"d028-44"}]},"d028-42":{"id":"/src/util/fonts.js","moduleParts":{"inline-style-editor.mjs":"d028-43"},"imported":[],"importedBy":[{"uid":"d028-44"}]},"d028-44":{"id":"/src/components/InlineStyleEditor.svelte","moduleParts":{"inline-style-editor.mjs":"d028-45"},"imported":[{"uid":"d028-0"},{"uid":"d028-48"},{"uid":"d028-49"},{"uid":"d028-2"},{"uid":"d028-36"},{"uid":"d028-40"},{"uid":"d028-42"}],"importedBy":[{"uid":"d028-46"}]},"d028-46":{"id":"/src/index.js","moduleParts":{"inline-style-editor.mjs":"d028-47"},"imported":[{"uid":"d028-44"}],"importedBy":[],"isEntry":true},"d028-48":{"id":"/node_modules/svelte/index.mjs","moduleParts":{},"imported":[{"uid":"d028-0"}],"importedBy":[{"uid":"d028-44"},{"uid":"d028-40"}]},"d028-49":{"id":"/src/assets/index.scss","moduleParts":{},"imported":[],"importedBy":[{"uid":"d028-44"}]},"d028-50":{"id":"/node_modules/d3-contour/src/index.js","moduleParts":{},"imported":[{"uid":"d028-34"},{"uid":"d028-51"}],"importedBy":[{"uid":"d028-36"}]},"d028-51":{"id":"/node_modules/d3-contour/src/density.js","moduleParts":{},"imported":[{"uid":"d028-52"},{"uid":"d028-22"},{"uid":"d028-28"},{"uid":"d028-34"}],"importedBy":[{"uid":"d028-50"}]},"d028-52":{"id":"/node_modules/d3-array/src/index.js","moduleParts":{},"imported":[{"uid":"d028-12"},{"uid":"d028-4"},{"uid":"d028-8"},{"uid":"d028-53"},{"uid":"d028-14"},{"uid":"d028-54"},{"uid":"d028-55"},{"uid":"d028-6"},{"uid":"d028-56"},{"uid":"d028-16"},{"uid":"d028-57"},{"uid":"d028-58"},{"uid":"d028-59"},{"uid":"d028-60"},{"uid":"d028-61"},{"uid":"d028-62"},{"uid":"d028-20"},{"uid":"d028-63"},{"uid":"d028-64"},{"uid":"d028-65"},{"uid":"d028-66"},{"uid":"d028-67"},{"uid":"d028-68"},{"uid":"d028-69"},{"uid":"d028-70"},{"uid":"d028-71"},{"uid":"d028-72"},{"uid":"d028-73"},{"uid":"d028-74"},{"uid":"d028-75"},{"uid":"d028-76"},{"uid":"d028-77"},{"uid":"d028-78"},{"uid":"d028-79"},{"uid":"d028-80"},{"uid":"d028-81"},{"uid":"d028-82"},{"uid":"d028-83"},{"uid":"d028-84"},{"uid":"d028-18"},{"uid":"d028-85"},{"uid":"d028-86"},{"uid":"d028-87"},{"uid":"d028-88"},{"uid":"d028-89"},{"uid":"d028-90"},{"uid":"d028-91"},{"uid":"d028-92"},{"uid":"d028-93"},{"uid":"d028-94"},{"uid":"d028-95"},{"uid":"d028-96"},{"uid":"d028-97"},{"uid":"d028-98"},{"uid":"d028-99"},{"uid":"d028-100"},{"uid":"d028-101"}],"importedBy":[{"uid":"d028-34"},{"uid":"d028-51"}]},"d028-53":{"id":"/node_modules/d3-array/src/blur.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"d028-52"}]},"d028-54":{"id":"/node_modules/d3-array/src/cross.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"d028-52"}]},"d028-55":{"id":"/node_modules/d3-array/src/cumsum.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"d028-52"}]},"d028-56":{"id":"/node_modules/d3-array/src/deviation.js","moduleParts":{},"imported":[{"uid":"d028-86"}],"importedBy":[{"uid":"d028-52"},{"uid":"d028-62"}]},"d028-57":{"id":"/node_modules/d3-array/src/fsum.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"d028-52"}]},"d028-58":{"id":"/node_modules/d3-array/src/group.js","moduleParts":{},"imported":[{"uid":"d028-101"},{"uid":"d028-102"}],"importedBy":[{"uid":"d028-52"},{"uid":"d028-59"}]},"d028-59":{"id":"/node_modules/d3-array/src/groupSort.js","moduleParts":{},"imported":[{"uid":"d028-4"},{"uid":"d028-58"},{"uid":"d028-94"}],"importedBy":[{"uid":"d028-52"}]},"d028-60":{"id":"/node_modules/d3-array/src/bin.js","moduleParts":{},"imported":[{"uid":"d028-103"},{"uid":"d028-12"},{"uid":"d028-104"},{"uid":"d028-16"},{"uid":"d028-102"},{"uid":"d028-71"},{"uid":"d028-18"},{"uid":"d028-20"}],"importedBy":[{"uid":"d028-52"}]},"d028-61":{"id":"/node_modules/d3-array/src/threshold/freedmanDiaconis.js","moduleParts":{},"imported":[{"uid":"d028-14"},{"uid":"d028-74"}],"importedBy":[{"uid":"d028-52"}]},"d028-62":{"id":"/node_modules/d3-array/src/threshold/scott.js","moduleParts":{},"imported":[{"uid":"d028-14"},{"uid":"d028-56"}],"importedBy":[{"uid":"d028-52"}]},"d028-63":{"id":"/node_modules/d3-array/src/max.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"d028-52"},{"uid":"d028-74"}]},"d028-64":{"id":"/node_modules/d3-array/src/maxIndex.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"d028-52"},{"uid":"d028-74"},{"uid":"d028-81"}]},"d028-65":{"id":"/node_modules/d3-array/src/mean.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"d028-52"}]},"d028-66":{"id":"/node_modules/d3-array/src/median.js","moduleParts":{},"imported":[{"uid":"d028-74"}],"importedBy":[{"uid":"d028-52"}]},"d028-67":{"id":"/node_modules/d3-array/src/merge.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"d028-52"}]},"d028-68":{"id":"/node_modules/d3-array/src/min.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"d028-52"},{"uid":"d028-74"},{"uid":"d028-85"}]},"d028-69":{"id":"/node_modules/d3-array/src/minIndex.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"d028-52"},{"uid":"d028-74"},{"uid":"d028-79"}]},"d028-70":{"id":"/node_modules/d3-array/src/mode.js","moduleParts":{},"imported":[{"uid":"d028-101"}],"importedBy":[{"uid":"d028-52"}]},"d028-71":{"id":"/node_modules/d3-array/src/nice.js","moduleParts":{},"imported":[{"uid":"d028-18"}],"importedBy":[{"uid":"d028-52"},{"uid":"d028-60"}]},"d028-72":{"id":"/node_modules/d3-array/src/pairs.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"d028-52"}]},"d028-73":{"id":"/node_modules/d3-array/src/permute.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"d028-52"},{"uid":"d028-94"}]},"d028-74":{"id":"/node_modules/d3-array/src/quantile.js","moduleParts":{},"imported":[{"uid":"d028-63"},{"uid":"d028-64"},{"uid":"d028-68"},{"uid":"d028-69"},{"uid":"d028-75"},{"uid":"d028-10"},{"uid":"d028-94"},{"uid":"d028-80"}],"importedBy":[{"uid":"d028-52"},{"uid":"d028-61"},{"uid":"d028-66"}]},"d028-75":{"id":"/node_modules/d3-array/src/quickselect.js","moduleParts":{},"imported":[{"uid":"d028-94"}],"importedBy":[{"uid":"d028-52"},{"uid":"d028-74"}]},"d028-76":{"id":"/node_modules/d3-array/src/range.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"d028-52"}]},"d028-77":{"id":"/node_modules/d3-array/src/rank.js","moduleParts":{},"imported":[{"uid":"d028-4"},{"uid":"d028-94"}],"importedBy":[{"uid":"d028-52"}]},"d028-78":{"id":"/node_modules/d3-array/src/least.js","moduleParts":{},"imported":[{"uid":"d028-4"}],"importedBy":[{"uid":"d028-52"}]},"d028-79":{"id":"/node_modules/d3-array/src/leastIndex.js","moduleParts":{},"imported":[{"uid":"d028-4"},{"uid":"d028-69"}],"importedBy":[{"uid":"d028-52"},{"uid":"d028-82"}]},"d028-80":{"id":"/node_modules/d3-array/src/greatest.js","moduleParts":{},"imported":[{"uid":"d028-4"}],"importedBy":[{"uid":"d028-52"},{"uid":"d028-74"}]},"d028-81":{"id":"/node_modules/d3-array/src/greatestIndex.js","moduleParts":{},"imported":[{"uid":"d028-4"},{"uid":"d028-64"}],"importedBy":[{"uid":"d028-52"}]},"d028-82":{"id":"/node_modules/d3-array/src/scan.js","moduleParts":{},"imported":[{"uid":"d028-79"}],"importedBy":[{"uid":"d028-52"}]},"d028-83":{"id":"/node_modules/d3-array/src/shuffle.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"d028-52"}]},"d028-84":{"id":"/node_modules/d3-array/src/sum.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"d028-52"}]},"d028-85":{"id":"/node_modules/d3-array/src/transpose.js","moduleParts":{},"imported":[{"uid":"d028-68"}],"importedBy":[{"uid":"d028-52"},{"uid":"d028-87"}]},"d028-86":{"id":"/node_modules/d3-array/src/variance.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"d028-52"},{"uid":"d028-56"}]},"d028-87":{"id":"/node_modules/d3-array/src/zip.js","moduleParts":{},"imported":[{"uid":"d028-85"}],"importedBy":[{"uid":"d028-52"}]},"d028-88":{"id":"/node_modules/d3-array/src/every.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"d028-52"}]},"d028-89":{"id":"/node_modules/d3-array/src/some.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"d028-52"}]},"d028-90":{"id":"/node_modules/d3-array/src/filter.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"d028-52"}]},"d028-91":{"id":"/node_modules/d3-array/src/map.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"d028-52"}]},"d028-92":{"id":"/node_modules/d3-array/src/reduce.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"d028-52"}]},"d028-93":{"id":"/node_modules/d3-array/src/reverse.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"d028-52"}]},"d028-94":{"id":"/node_modules/d3-array/src/sort.js","moduleParts":{},"imported":[{"uid":"d028-4"},{"uid":"d028-73"}],"importedBy":[{"uid":"d028-52"},{"uid":"d028-59"},{"uid":"d028-74"},{"uid":"d028-75"},{"uid":"d028-77"}]},"d028-95":{"id":"/node_modules/d3-array/src/difference.js","moduleParts":{},"imported":[{"uid":"d028-101"}],"importedBy":[{"uid":"d028-52"}]},"d028-96":{"id":"/node_modules/d3-array/src/disjoint.js","moduleParts":{},"imported":[{"uid":"d028-101"}],"importedBy":[{"uid":"d028-52"}]},"d028-97":{"id":"/node_modules/d3-array/src/intersection.js","moduleParts":{},"imported":[{"uid":"d028-101"}],"importedBy":[{"uid":"d028-52"}]},"d028-98":{"id":"/node_modules/d3-array/src/subset.js","moduleParts":{},"imported":[{"uid":"d028-99"}],"importedBy":[{"uid":"d028-52"}]},"d028-99":{"id":"/node_modules/d3-array/src/superset.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"d028-52"},{"uid":"d028-98"}]},"d028-100":{"id":"/node_modules/d3-array/src/union.js","moduleParts":{},"imported":[{"uid":"d028-101"}],"importedBy":[{"uid":"d028-52"}]},"d028-101":{"id":"/node_modules/internmap/src/index.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"d028-52"},{"uid":"d028-58"},{"uid":"d028-70"},{"uid":"d028-95"},{"uid":"d028-96"},{"uid":"d028-97"},{"uid":"d028-100"}]},"d028-102":{"id":"/node_modules/d3-array/src/identity.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"d028-58"},{"uid":"d028-60"}]},"d028-103":{"id":"/node_modules/d3-array/src/array.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"d028-60"}]},"d028-104":{"id":"/node_modules/d3-array/src/constant.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"d028-60"}]}},"env":{"rollup":"2.78.1"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
4018
+
4019
+ const run = () => {
4020
+ const width = window.innerWidth;
4021
+ const height = window.innerHeight;
4022
+
4023
+ const chartNode = document.querySelector("main");
4024
+ drawChart.default(chartNode, data, width, height);
4025
+ };
4026
+
4027
+ window.addEventListener('resize', run);
4028
+
4029
+ document.addEventListener('DOMContentLoaded', run);
4030
+ /*-->*/
4031
+ </script>
4032
+ </body>
4033
+ </html>
4034
+
4035
+ env":{"rollup":"2.78.1"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
4018
4036
 
4019
4037
  const run = () => {
4020
4038
  const width = window.innerWidth;