turbulence 1.3.0 → 1.4.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a2023fddd852d412e27f0a4daab0755c0e30bc611ac27656f9a2c2a0a8b20ace
4
- data.tar.gz: 94460572613993d657687a63a62a367c8c3365aafde2cf6e702cef55d20b4cd1
3
+ metadata.gz: a4609ac63b60c3001386fdaa357bf0509eaeba83ef7f4d619ebd2988b185adad
4
+ data.tar.gz: cee8c714b82bc110628f9b4dd9bd4cb77e698cfaf645491dfc1e0a65814fdaec
5
5
  SHA512:
6
- metadata.gz: a12aacc43132911890a7b4af5129c09bc89cf95399e1f21387da40207be20efbb97a8234d479a884792fcbacf873049be4188d4593fcb57d607f9c0c164cd3ce
7
- data.tar.gz: 6d29af820ff2e2bcc533b69e78453c856956c3e83f2448dee95a55ea0bd2608015ec2f97f458735a06552b41af9acb666bc563cdf9f2d439d2970ef91e9b702b
6
+ metadata.gz: 57c942825c289ad779f0c38b46daf09d064f1ef91a66d8dad86115492295c29e1e15a8c41a0da50c1bb45dd5f5224219280a74968fcbb1d501c57124dd1addcf
7
+ data.tar.gz: ddc95058bb0482944b777c1293fe3dcea9c79accee2de809105d1ca2f49510f0b6f94f6e82568a0e57cbd4b5057dea735f7ed56ef790b4661dcfc135d9fa3196
data/CHANGELOG.md CHANGED
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.4.0] - 2026-07-08
11
+
12
+ ### Added
13
+ - `--json` flag to output raw metrics as JSON to stdout for scripting and CI integration ([#68])
14
+ - Legend and usage tips to treemap view explaining size=churn, color=complexity ([#64])
15
+ - Title and usage tips to scatter plot view ([#65])
16
+
17
+ ### Changed
18
+ - Update Highcharts from v2.1.3 to v13.0.0, fixing tooltip detection at chart edges ([#65])
19
+ - Replace Google Charts with Highcharts for treemap visualization, removing CDN dependency ([#66])
20
+
21
+ ### Fixed
22
+ - Scatter plot tooltips now work reliably for all data points, including edge cases ([#65])
23
+
10
24
  ## [1.3.0] - 2026-06-13
11
25
 
12
26
  ### Added
@@ -166,7 +180,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
166
180
  - Initial gem structure
167
181
  - README with basic documentation
168
182
 
169
- [Unreleased]: https://github.com/chad/turbulence/compare/1.2.4...HEAD
183
+ [Unreleased]: https://github.com/chad/turbulence/compare/1.4.0...HEAD
184
+ [1.4.0]: https://github.com/chad/turbulence/compare/1.3.0...1.4.0
170
185
  [1.3.0]: https://github.com/chad/turbulence/compare/1.2.4...1.3.0
171
186
  [1.2.4]: https://github.com/chad/turbulence/compare/1.2.3...1.2.4
172
187
  [1.2.3]: https://github.com/chad/turbulence/compare/1.2.2...1.2.3
@@ -182,6 +197,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
182
197
  [0.0.3]: https://github.com/chad/turbulence/compare/0.0.2...0.0.3
183
198
  [0.0.2]: https://github.com/chad/turbulence/releases/tag/0.0.2
184
199
 
200
+ [#68]: https://github.com/chad/turbulence/pull/68
201
+ [#66]: https://github.com/chad/turbulence/pull/66
202
+ [#65]: https://github.com/chad/turbulence/pull/65
203
+ [#64]: https://github.com/chad/turbulence/pull/64
185
204
  [#58]: https://github.com/chad/turbulence/pull/58
186
205
  [#56]: https://github.com/chad/turbulence/pull/56
187
206
  [#54]: https://github.com/chad/turbulence/pull/54
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- turbulence (1.3.0)
4
+ turbulence (1.4.0)
5
5
  flog (>= 4.1)
6
6
  json
7
7
  launchy (>= 2.0.0)
@@ -39,6 +39,10 @@ class Turbulence
39
39
  config.output_dir = dir
40
40
  end
41
41
 
42
+ opts.on('--json', 'output raw metrics as JSON to stdout') do
43
+ config.json_output = true
44
+ end
45
+
42
46
  opts.on_tail("-h", "--help", "Show this message") do
43
47
  puts opts
44
48
  exit
@@ -1,4 +1,5 @@
1
1
  require 'fileutils'
2
+ require 'json'
2
3
  require 'launchy'
3
4
  require 'optparse'
4
5
  require 'forwardable'
@@ -14,6 +15,8 @@ class Turbulence
14
15
  TEMPLATE_FILES = [
15
16
  'turbulence.html',
16
17
  'highcharts.js',
18
+ 'highcharts-heatmap.js',
19
+ 'highcharts-treemap.js',
17
20
  'jquery.min.js',
18
21
  'treemap.html',
19
22
  ].map do |filename|
@@ -33,6 +36,7 @@ class Turbulence
33
36
  :exclusion_pattern,
34
37
  :no_open,
35
38
  :output_dir,
39
+ :json_output,
36
40
  ]
37
41
 
38
42
  def output_path
@@ -44,6 +48,21 @@ class Turbulence
44
48
  end
45
49
 
46
50
  def generate_bundle
51
+ if json_output
52
+ generate_json
53
+ else
54
+ generate_html
55
+ end
56
+ end
57
+
58
+ def generate_json
59
+ # Suppress progress output for clean JSON
60
+ config.output = nil
61
+ turb = Turbulence.new(config)
62
+ puts JSON.pretty_generate(turb.metrics)
63
+ end
64
+
65
+ def generate_html
47
66
  FileUtils.mkdir_p(output_path)
48
67
 
49
68
  Dir.chdir(output_path) do
@@ -11,15 +11,17 @@ class Turbulence
11
11
  :output,
12
12
  :output_dir,
13
13
  :no_open,
14
+ :json_output,
14
15
  ]
15
16
 
16
17
  def initialize
17
- @directory = Dir.pwd
18
- @graph_type = 'turbulence'
19
- @scm_name = 'Git'
20
- @output = STDOUT
21
- @output_dir = nil
22
- @no_open = false
18
+ @directory = Dir.pwd
19
+ @graph_type = 'turbulence'
20
+ @scm_name = 'Git'
21
+ @output = STDOUT
22
+ @output_dir = nil
23
+ @no_open = false
24
+ @json_output = false
23
25
  end
24
26
 
25
27
  # TODO: drop attr accessor and ivar once it stops getting set via Churn
@@ -49,11 +49,17 @@ class Turbulence
49
49
  def file_metrics_for_directory(metrics_hash)
50
50
  metrics_hash.map do |filename, metrics|
51
51
  { :filename => filename,
52
- :x => metrics[x_metric],
53
- :y => metrics[y_metric]}
52
+ :x => ensure_minimum(metrics[x_metric]),
53
+ :y => ensure_minimum(metrics[y_metric])}
54
54
  end
55
55
  end
56
56
 
57
+ # Offset zero values slightly to avoid Highcharts tooltip detection
58
+ # issues at the chart edge (bug in Highcharts 2.x)
59
+ def ensure_minimum(value)
60
+ value.zero? ? 1 : value
61
+ end
62
+
57
63
  def generate_results(metrics, ci)
58
64
  File.open("cc.js", "w") do |f|
59
65
  ci.copy_templates_into(Dir.pwd)
@@ -21,16 +21,20 @@ class Turbulence
21
21
  def build_js
22
22
  clean_metrics_from_missing_data
23
23
 
24
- output = "var treemap_data = [['File', 'Parent', 'Churn (size)', 'Complexity (color)'],\n"
25
- output << "['Root', null, 0, 0],\n"
26
-
27
- @metrics_hash.each do |file|
28
- output << "['#{file[0]}', 'Root', #{file[1][@x_metric]}, #{file[1][@y_metric]}],\n"
24
+ # Build Highcharts treemap data format
25
+ data = @metrics_hash.map do |filename, metrics|
26
+ churn = metrics[@x_metric] || 0
27
+ complexity = metrics[@y_metric] || 0
28
+ # Ensure minimum value of 1 for churn to avoid zero-size boxes
29
+ churn = 1 if churn.zero?
30
+ {
31
+ name: filename,
32
+ value: churn,
33
+ colorValue: complexity
34
+ }
29
35
  end
30
36
 
31
- output << "];"
32
-
33
- output
37
+ "var treemap_data = #{data.to_json};"
34
38
  end
35
39
 
36
40
  private
@@ -1,3 +1,3 @@
1
1
  class Turbulence
2
- VERSION = "1.3.0"
2
+ VERSION = "1.4.0"
3
3
  end
@@ -19,6 +19,8 @@ describe Turbulence::CommandLineInterface do
19
19
  it "bundles the files" do
20
20
  cli.generate_bundle
21
21
  expect(Dir.glob('turbulence/*').sort).to eq(["turbulence/cc.js",
22
+ "turbulence/highcharts-heatmap.js",
23
+ "turbulence/highcharts-treemap.js",
22
24
  "turbulence/highcharts.js",
23
25
  "turbulence/jquery.min.js",
24
26
  "turbulence/treemap.html",
@@ -38,6 +40,8 @@ describe Turbulence::CommandLineInterface do
38
40
  cli = Turbulence::CommandLineInterface.new(['--output', custom_dir], :output => nil)
39
41
  cli.generate_bundle
40
42
  expect(Dir.glob("#{custom_dir}/*").sort).to eq(["#{custom_dir}/cc.js",
43
+ "#{custom_dir}/highcharts-heatmap.js",
44
+ "#{custom_dir}/highcharts-treemap.js",
41
45
  "#{custom_dir}/highcharts.js",
42
46
  "#{custom_dir}/jquery.min.js",
43
47
  "#{custom_dir}/treemap.html",
@@ -46,6 +50,22 @@ describe Turbulence::CommandLineInterface do
46
50
  end
47
51
  end
48
52
 
53
+ describe "#generate_json" do
54
+ before do
55
+ Turbulence.instance_variable_set(:@config, nil)
56
+ end
57
+
58
+ it "outputs valid JSON to stdout" do
59
+ cli = Turbulence::CommandLineInterface.new(%w(--json), :output => nil)
60
+ expect { cli.generate_bundle }.to output(/\{.*"complexity".*"churn".*\}/m).to_stdout
61
+ end
62
+
63
+ it "suppresses progress output" do
64
+ cli = Turbulence::CommandLineInterface.new(%w(--json), :output => nil)
65
+ expect { cli.generate_bundle }.not_to output(/calculating metric/).to_stdout
66
+ end
67
+ end
68
+
49
69
  describe "#output_path" do
50
70
  before do
51
71
  # Reset the singleton config between tests
@@ -9,7 +9,7 @@ describe Turbulence::Generators::TreeMap do
9
9
  )
10
10
 
11
11
  expect(generator.build_js).to match(/var treemap_data/)
12
- expect(generator.build_js).to match(/\'foo.rb\'/)
12
+ expect(generator.build_js).to match(/"foo\.rb"/)
13
13
  end
14
14
  end
15
15
 
@@ -19,7 +19,7 @@ describe Turbulence::Generators::TreeMap do
19
19
  "foo.rb" => { :churn => 1 }
20
20
  )
21
21
 
22
- expect(generator.build_js).to eq "var treemap_data = [['File', 'Parent', 'Churn (size)', 'Complexity (color)'],\n['Root', null, 0, 0],\n];"
22
+ expect(generator.build_js).to eq "var treemap_data = [];"
23
23
  end
24
24
  end
25
25
  end
@@ -0,0 +1,23 @@
1
+ !/**
2
+ * Highmaps JS v13.0.0 (2026-06-11)
3
+ * @module highcharts/modules/heatmap
4
+ * @requires highcharts
5
+ *
6
+ * (c) 2009-2026 Highsoft AS
7
+ * Author: Torstein Hønsi
8
+ *
9
+ * A commercial license may be required depending on use,
10
+ * see www.highcharts.com/license
11
+ */function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(t._Highcharts,t._Highcharts.Axis,t._Highcharts.Color,t._Highcharts.SeriesRegistry,t._Highcharts.SVGElement,t._Highcharts.SVGRenderer):"function"==typeof define&&define.amd?define("highcharts/modules/heatmap",["highcharts/highcharts"],function(t){return e(t,t.Axis,t.Color,t.SeriesRegistry,t.SVGElement,t.SVGRenderer)}):"object"==typeof exports?exports["highcharts/modules/heatmap"]=e(t._Highcharts,t._Highcharts.Axis,t._Highcharts.Color,t._Highcharts.SeriesRegistry,t._Highcharts.SVGElement,t._Highcharts.SVGRenderer):t.Highcharts=e(t.Highcharts,t.Highcharts.Axis,t.Highcharts.Color,t.Highcharts.SeriesRegistry,t.Highcharts.SVGElement,t.Highcharts.SVGRenderer)}("u"<typeof window?this:window,(t,e,i,s,o,r)=>(()=>{"use strict";var a,l,n,h,d={28:t=>{t.exports=o},512:t=>{t.exports=s},532:t=>{t.exports=e},540:t=>{t.exports=r},620:t=>{t.exports=i},944:e=>{e.exports=t}},p={};function c(t){var e=p[t];if(void 0!==e)return e.exports;var i=p[t]={exports:{}};return d[t](i,i.exports,c),i.exports}c.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return c.d(e,{a:e}),e},c.d=(t,e)=>{for(var i in e)c.o(e,i)&&!c.o(t,i)&&Object.defineProperty(t,i,{enumerable:!0,get:e[i]})},c.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);var u={};c.d(u,{default:()=>B});var g=c(944),m=c.n(g),f=c(532),x=c.n(f),y=c(620),b=c.n(y);let{parse:v}=b();(a=l||(l={})).initDataClasses=function(t){let e=this.chart,i=this.legendItem=this.legendItem||{},s=this.options,o=t.dataClasses||[],r,a,l=e.options.chart.colorCount,n=0,h;this.dataClasses=a=[],i.labels=[];for(let t=0,i=o.length;t<i;++t)r=o[t],r=(0,g.merge)(r),a.push(r),(e.styledMode||!r.color)&&("category"===s.dataClassColor?(e.styledMode||(l=(h=e.options.colors||[]).length,r.color=h[n]),r.colorIndex=n,++n===l&&(n=0)):r.color=v(s.minColor).tweenTo(v(s.maxColor),i<2?.5:t/(i-1)))},a.initStops=function(){let t=this.options,e=this.stops=t.stops||[[0,t.minColor||""],[1,t.maxColor||""]];for(let t=0,i=e.length;t<i;++t)e[t].color=v(e[t][1])},a.normalizedValue=function(t){let e=this.max||0,i=this.min||0;return this.logarithmic&&(t=this.logarithmic.log2lin(t)),1-(e-t)/(e-i||1)},a.toColor=function(t,e){let i,s,o,r,a,l,n=this.dataClasses,h=this.stops;if(n){for(l=n.length;l--;)if(s=(a=n[l]).from,o=a.to,(void 0===s||t>=s)&&(void 0===o||t<=o)){r=a.color,e&&(e.dataClass=l,e.colorIndex=a.colorIndex);break}}else{for(i=this.normalizedValue(t),l=h.length;l--&&!(i>h[l][0]););s=h[l]||h[l+1],i=1-((o=h[l+1]||s)[0]-i)/(o[0]-s[0]||1),r=s.color.tweenTo(o.color,i)}return r};let C=l,{parse:A}=b();!function(t){let e;function i(){let{userOptions:t}=this;this.colorAxis=[],t.colorAxis&&(t.colorAxis=(0,g.splat)(t.colorAxis),t.colorAxis.map(t=>new e(this,t)))}function s(t){let e=this.chart.colorAxis||[],i=e=>{let i=t.allItems.indexOf(e);-1!==i&&(this.destroyItem(t.allItems[i]),t.allItems.splice(i,1))},s=[],o,r;for(e.forEach(function(t){o=t.options,o?.showInLegend&&(o.dataClasses&&o.visible?s=s.concat(t.getDataClassLegendSymbols()):o.visible&&s.push(t),t.series.forEach(function(t){(!t.options.showInLegend||o.dataClasses)&&("point"===t.options.legendType?t.points.forEach(function(t){i(t)}):i(t))}))}),r=s.length;r--;)t.allItems.unshift(s[r])}function o(t){t.visible&&t.item.legendColor&&t.item.legendItem.symbol.attr({fill:t.item.legendColor})}function r(t){this.chart.colorAxis?.forEach(e=>{e.update({},t.redraw)})}function a(){(this.chart.colorAxis?.length||this.colorAttribs)&&this.translateColors()}function l(){let t=this.axisTypes;t?-1===t.indexOf("colorAxis")&&t.push("colorAxis"):this.axisTypes=["colorAxis"]}function n(t){let e=this,i=t?"show":"hide";e.visible=e.options.visible=!!t,["graphic","dataLabel"].forEach(function(t){e[t]&&e[t][i]()}),this.series.buildKDTree()}function h(){let t=this,e=this.getPointsCollection(),i=this.options.nullColor,s=this.colorAxis,o=this.colorKey;e.forEach(e=>{let r=e.getNestedProperty(o),a=e.options.color||(e.isNull||null===e.value?i:s&&void 0!==r?s.toColor(r,e):e.color||t.color);a&&e.color!==a&&(e.color=a,"point"===t.options.legendType&&e.legendItem&&e.legendItem.label&&t.chart.legend.colorizeItem(e,e.visible))})}function d(){this.elem.attr("fill",A(this.start).tweenTo(A(this.end),this.pos),void 0,!0)}function p(){this.elem.attr("stroke",A(this.start).tweenTo(A(this.end),this.pos),void 0,!0)}t.compose=function(t,c,u,m,f){var x;let y,b=c.prototype,v=u.prototype,C=f.prototype;b.collectionsWithUpdate.includes("colorAxis")||(e=t,b.collectionsWithUpdate.push("colorAxis"),b.collectionsWithInit.colorAxis=[b.addColorAxis],(0,g.addEvent)(c,"afterCreateAxes",i),y=(x=c).prototype.createAxis,x.prototype.createAxis=function(t,i){if("colorAxis"!==t)return y.apply(this,arguments);let s=new e(this,(0,g.merge)(i.axis,{index:this[t].length,isX:!1}));return this.isDirtyLegend=!0,this.axes.forEach(t=>{t.series=[]}),this.series.forEach(t=>{t.bindAxes(),t.isDirtyData=!0}),(0,g.pick)(i.redraw,!0)&&this.redraw(i.animation),s},v.fillSetter=d,v.strokeSetter=p,(0,g.addEvent)(m,"afterGetAllItems",s),(0,g.addEvent)(m,"afterColorizeItem",o),(0,g.addEvent)(m,"afterUpdate",r),(0,g.extend)(C,{optionalAxis:"colorAxis",translateColors:h}),(0,g.extend)(C.pointClass.prototype,{setVisible:n}),(0,g.addEvent)(f,"afterTranslate",a,{order:1}),(0,g.addEvent)(f,"bindAxes",l))},t.pointSetVisible=n}(n||(n={}));let k=n;var w=c(512),M=c.n(w);let{defaultOptions:L}=m(),{series:I}=M();L.colorAxis=(0,g.merge)(L.xAxis,{lineWidth:0,minPadding:0,maxPadding:0,gridLineColor:"var(--highcharts-background-color)",gridLineWidth:1,tickPixelInterval:72,startOnTick:!0,endOnTick:!0,offset:0,marker:{animation:{duration:50},clip:!1,lineColor:"var(--highcharts-neutral-color-40)",lineWidth:0,color:"var(--highcharts-neutral-color-40)",width:.01},labels:{distance:8,overflow:"justify",rotation:0},minColor:"var(--highcharts-highlight-color-10)",maxColor:"var(--highcharts-highlight-color-100)",tickLength:5,title:{margin:5},showInLegend:!0});class P extends x(){static compose(t,e,i,s){k.compose(P,t,e,i,s)}constructor(t,e){super(t,e),this.clippable=!1,this.coll="colorAxis",this.visible=!0,this.init(t,e)}init(t,e){let i=t.options.legend||{},s=e.layout?"vertical"!==e.layout:"vertical"!==i.layout;this.side=e.side||s?2:1,this.reversed=e.reversed,this.opposite=!s,super.init(t,e,"colorAxis"),this.userOptions=e,(0,g.isArray)(t.userOptions.colorAxis)&&(t.userOptions.colorAxis[this.index]=e),e.dataClasses&&this.initDataClasses(e),this.initStops(),this.horiz=s,this.zoomEnabled=!1}hasData(){return!!(this.tickPositions||[]).length}setTickPositions(){if(!this.dataClasses)return super.setTickPositions()}setOptions(t){let e=this.chart.options.legend||{},i=L.colorAxis,s=t.layout||e.layout||i.layout,o=(0,g.merge)("vertical"!==s?{title:{rotation:0}}:{title:{rotation:90,margin:10}},i,t,{showEmpty:!1,visible:this.chart.options.legend.enabled&&!1!==t.visible});super.setOptions(o),this.options.crosshair=this.options.marker}setAxisSize(){let t=this.chart,e=this.legendItem?.symbol,{width:i,height:s}=this.getSize();e&&(this.left=+e.attr("x"),this.top=+e.attr("y"),this.width=i=+e.attr("width"),this.height=s=+e.attr("height"),this.right=t.chartWidth-this.left-i,this.bottom=t.chartHeight-this.top-s,this.pos=this.horiz?this.left:this.top),this.len=(this.horiz?i:s)||P.defaultLegendLength}getOffset(){let t=this.chart,e=this.legendItem?.group,i=t.axisOffset[this.side],{clipOffset:s,legend:o}=t;e&&(this.axisParent=e,super.getOffset(),o.allItems.forEach(function(t){t instanceof P&&t.drawLegendSymbol(o,t)}),o.render(),t.getMargins(!0),this.added||(this.added=!0),this.labelLeft=0,this.labelRight=this.width,t.axisOffset[this.side]=i,t.clipOffset=s)}setLegendColor(){let t=this.horiz,e=this.reversed,i=+!!e,s=+!e,o=t?[i,0,s,0]:[0,s,0,i];this.legendColor={linearGradient:{x1:o[0],y1:o[1],x2:o[2],y2:o[3]},stops:this.stops}}drawLegendSymbol(t,e){let i=e.legendItem||{},s=t.padding,o=t.options,r=this.options.labels,a=(0,g.pick)(o.itemDistance,10),l=this.horiz,{width:n,height:h}=this.getSize(),d=(0,g.pick)(o.labelPadding,l?16:30);this.setLegendColor();let p=0,c=0;if(this.options.title?.text&&!this.axisTitle){this.axisGroup||(this.axisParent=i.group,this.createGroups());let t=this.len,e=this.top,s=this.left,o=this.width;this.len=l?n:h,this.top=0,this.left=0,this.width=n,this.addTitle(!0),this.len=t,this.top=e,this.left=s,this.width=o}if(this.axisTitle){let t=this.axisTitle.getBBox();p=t.height,c=t.width}let u=this.options.title||{},m=this.axisTitle?u.margin??0:0,f=l?p+m:0;i.symbol||(i.symbol=this.chart.renderer.symbol("roundedRect").attr({r:o.symbolRadius??3,zIndex:1}).add(i.group)),i.symbol.attr({x:0,y:(t.baseline||0)-11+f,width:n,height:h}),l?(i.labelWidth=Math.max(n+s+a,c||0),i.labelHeight=h+s+d+p+m):(i.labelWidth=n+s+(r.x??r.distance??0)+(this.maxLabelLength||0)+(c||0)+m,i.labelHeight=Math.max(h+s,p||0))}getTitlePosition(t){let e=super.getTitlePosition(t),i=this.options.title?.margin??0;if(this.horiz&&t)e.y=this.top-i;else if(!this.horiz&&t){let t=this.options.labels||{},s=t.x??t.distance??0;e.x=this.left+this.width+s+(this.maxLabelLength||0)+i}return e}setState(t){this.series.forEach(function(e){e.setState(t)})}setVisible(){}getSeriesExtremes(){let t=this.series,e,i,s,o,r=t.length;for(this.dataMin=1/0,this.dataMax=-1/0;r--;){for(let a of(i=(o=t[r]).colorKey=(0,g.pick)(o.options.colorKey,o.colorKey,o.pointValKey,o.zoneAxis,"y"),s=o[i+"Min"]&&o[i+"Max"],[i,"value","y"]))if((e=o.getColumn(a)).length)break;if(s)o.minColorValue=o[i+"Min"],o.maxColorValue=o[i+"Max"];else{let t=I.prototype.getExtremes.call(o,e);o.minColorValue=t.dataMin,o.maxColorValue=t.dataMax}(0,g.defined)(o.minColorValue)&&(0,g.defined)(o.maxColorValue)&&(this.dataMin=Math.min(this.dataMin,o.minColorValue),this.dataMax=Math.max(this.dataMax,o.maxColorValue)),s||I.prototype.applyExtremes.call(o)}}drawCrosshair(t,e){let i,s=this.legendItem||{},o=e?.plotX,r=e?.plotY,a=this.pos,l=this.len,n=this.options.marker||{};e&&((i=this.toPixels(e.getNestedProperty(e.series.colorKey)))<a?i=a-2:i>a+l&&(i=a+l+2),e.plotX=i,e.plotY=this.len-i,super.drawCrosshair(t,e),e.plotX=o,e.plotY=r,this.cross&&!this.cross.addedToColorAxis&&s.group&&(this.cross.addClass("highcharts-coloraxis-marker").add(s.group),this.cross.addedToColorAxis=!0,this.chart.styledMode||"object"!=typeof this.crosshair||this.cross.attr({fill:n.color,stroke:n.lineColor,"stroke-width":n.lineWidth})))}getPlotLinePath(t){let e=this.left,i=t.translatedValue,{symbol:s}=this.options.marker||{},o=this.top;if((0,g.isNumber)(i)){let t=this.width,r=i-t/2;return s?this.chart.renderer.symbols[s](e,r,t,t):this.horiz?[["M",i-4,o-6],["L",i+4,o-6],["L",i,o],["Z"]]:[["M",e,i],["L",e-6,i+6],["L",e-6,i-6],["Z"]]}return super.getPlotLinePath(t)}update(t,e){let i=this.chart.legend;this.series.forEach(t=>{t.isDirtyData=!0}),(t.dataClasses&&i.allItems||this.dataClasses)&&this.destroyItems(),super.update(t,e),this.legendItem?.label&&(this.setLegendColor(),i.colorizeItem(this,!0))}destroyItems(){let t=this.chart,e=this.legendItem||{};if(e.label)t.legend.destroyItem(this);else if(e.labels)for(let i of e.labels)t.legend.destroyItem(i);t.isDirtyLegend=!0}destroy(){this.chart.isDirtyLegend=!0,this.destroyItems(),super.destroy(...[].slice.call(arguments))}remove(t){this.destroyItems(),super.remove(t)}getDataClassLegendSymbols(){let t,e=this,i=e.chart,s=e.legendItem&&e.legendItem.labels||[],o=i.options.legend,r=(0,g.pick)(o.valueDecimals,-1),a=(0,g.pick)(o.valueSuffix,""),l=t=>e.series.reduce((e,i)=>(e.push(...i.points.filter(e=>e.dataClass===t)),e),[]);return s.length||e.dataClasses.forEach((o,n)=>{let h=o.from,d=o.to,{numberFormatter:p}=i,c=!0;t="",void 0===h?t="< ":void 0===d&&(t="> "),void 0!==h&&(t+=p(h,r)+a),void 0!==h&&void 0!==d&&(t+=" - "),void 0!==d&&(t+=p(d,r)+a),s.push((0,g.extend)({chart:i,name:t,options:{},drawLegendSymbol:I.prototype.drawLegendSymbol,visible:!0,isDataClass:!0,setState:t=>{for(let e of l(n))e.setState(t)},setVisible:function(){this.visible=c=e.visible=!c;let t=[];for(let e of l(n))e.setVisible(c),e.hiddenInDataClass=!c,-1===t.indexOf(e.series)&&t.push(e.series);i.legend.colorizeItem(this,c),t.forEach(t=>{(0,g.fireEvent)(t,"afterDataClassLegendClick")})}},o))}),s}getSize(){let{chart:t,horiz:e}=this,{height:i,width:s}=this.options,{legend:o}=t.options;return{width:(0,g.pick)((0,g.defined)(s)?(0,g.relativeLength)(s,t.chartWidth):void 0,o?.symbolWidth,e?P.defaultLegendLength:12),height:(0,g.pick)((0,g.defined)(i)?(0,g.relativeLength)(i,t.chartHeight):void 0,o?.symbolHeight,e?12:P.defaultLegendLength)}}}P.defaultLegendLength=200,P.keepProps=["legendItem"],(0,g.extend)(P.prototype,C),Array.prototype.push.apply(x().keepProps,P.keepProps);/**
12
+ * @license Highcharts JS v13.0.0 (2026-06-11)
13
+ * @module highcharts/modules/color-axis
14
+ * @requires highcharts
15
+ *
16
+ * ColorAxis module
17
+ *
18
+ * (c) 2012-2026 Highsoft AS
19
+ * Author: Paweł Potaczek
20
+ *
21
+ * A commercial license may be required depending on use,
22
+ * see www.highcharts.com/license
23
+ */let T=m();T.ColorAxis=T.ColorAxis||P,T.ColorAxis.compose(T.Chart,T.Fx,T.Legend,T.Series);var E=c(28),S=c.n(E);let{column:{prototype:D}}=M().seriesTypes;var O=h||(h={});function V(t){let e=this.series,i=e.chart.renderer;this.moveToTopOnHover&&this.graphic&&(e.stateMarkerGraphic||(e.stateMarkerGraphic=new(S())(i,"use").css({pointerEvents:"none"}).add(this.graphic.parentGroup)),t?.state==="hover"?(this.graphic.attr({id:this.id}),e.stateMarkerGraphic.attr({href:`${i.url}#${this.id}`,visibility:"visible"})):e.stateMarkerGraphic.attr({href:""}))}O.pointMembers={dataLabelOnNull:!0,moveToTopOnHover:!0,isValid:function(){return null!==this.value&&this.value!==1/0&&this.value!==-1/0&&(void 0===this.value||!isNaN(this.value))}},O.seriesMembers={colorKey:"value",axisTypes:["xAxis","yAxis","colorAxis"],parallelArrays:["x","y","value"],pointArrayMap:["value"],trackerGroups:["group","markerGroup","dataLabelsGroup"],colorAttribs:function(t){let e={};return(0,g.defined)(t.color)&&(!t.state||"normal"===t.state)&&(e[this.colorProp||"fill"]=t.color),e},pointAttribs:D.pointAttribs},O.compose=function(t){let e=t.prototype.pointClass;return(0,g.addEvent)(e,"afterSetState",V),t};let H=h,{scatter:{prototype:{pointClass:z}}}=M().seriesTypes;class G extends z{applyOptions(t,e){return(this.isNull||null===this.value)&&delete this.color,super.applyOptions(t,e),this.formatPrefix=this.isNull||null===this.value?"null":"point",this}getCellAttributes(){let t=this.series,e=t.options,i=(e.colsize||1)/2,s=(e.rowsize||1)/2,o=t.xAxis,r=t.yAxis,a=this.options.marker||t.options.marker,l=t.pointPlacementToXValue(),n=(0,g.pick)(this.pointPadding,e.pointPadding,0),h={x1:(0,g.clamp)(Math.round(o.len-o.translate(this.x-i,!1,!0,!1,!0,-l)),-o.len,2*o.len),x2:(0,g.clamp)(Math.round(o.len-o.translate(this.x+i,!1,!0,!1,!0,-l)),-o.len,2*o.len),y1:(0,g.clamp)(Math.round(r.translate(this.y-s,!1,!0,!1,!0)),-r.len,2*r.len),y2:(0,g.clamp)(Math.round(r.translate(this.y+s,!1,!0,!1,!0)),-r.len,2*r.len)};for(let t of[["width","x"],["height","y"]]){let e=t[0],i=t[1],s=i+"1",l=i+"2",d=Math.abs(h[s]-h[l]),p=a&&a.lineWidth||0,c=Math.abs(h[s]+h[l])/2,u=a&&a[e];if((0,g.defined)(u)&&u<d){let t=u/2+p/2;h[s]=c-t,h[l]=c+t}n&&(("x"===i&&o.reversed||"y"===i&&!r.reversed)&&(s=l,l=i+"1"),h[s]+=n,h[l]-=n)}return h}haloPath(t){if(!t)return[];let{x:e=0,y:i=0,width:s=0,height:o=0}=this.shapeArgs||{};return[["M",e-t,i-t],["L",e-t,i+o+t],["L",e+s+t,i+o+t],["L",e+s+t,i-t],["Z"]]}isValid(){return this.value!==1/0&&this.value!==-1/0}}(0,g.extend)(G.prototype,{dataLabelOnNull:!0,moveToTopOnHover:!0,ttBelow:!1});var R=c(540),N=c.n(R);let{doc:W}=m(),{series:_,seriesTypes:{column:K,scatter:X}}=M(),{prototype:{symbols:j}}=N(),{colorFromPoint:F,getContext:U}={colorFromPoint:function(t,e){let i=e.series.colorAxis;if(i){let s=i.toColor(t||0,e).split(")")[0].split("(")[1].split(",").map(t=>(0,g.pick)(parseFloat(t),parseInt(t,10)));return s[3]=255*(0,g.pick)(s[3],1),(0,g.defined)(t)&&e.visible||(s[3]=0),s}return[0,0,0,0]},getContext:function(t){let{canvas:e,context:i}=t;return e&&i?.clearRect?(i.clearRect(0,0,e.width,e.height),i):(t.canvas=W.createElement("canvas"),t.context=t.canvas.getContext("2d",{willReadFrequently:!0})||void 0,t.context)}};class Y extends X{constructor(){super(...arguments),this.valueMax=NaN,this.valueMin=NaN,this.isDirtyCanvas=!0}drawPoints(){let t=this,e=t.options,i=e.interpolation,s=e.marker||{};if(i){let{image:e,chart:i,xAxis:s,yAxis:o}=t,{reversed:r=!1,len:a}=s,{reversed:l=!1,len:n}=o,h={width:a,height:n};if(!e||t.isDirtyData||t.isDirtyCanvas){let a=U(t),{canvas:n,options:{colsize:d=1,rowsize:p=1},points:c,points:{length:u}}=t,g=i.colorAxis&&i.colorAxis[0];if(n&&a&&g){let{min:g,max:m}=s.getExtremes(),{min:f,max:x}=o.getExtremes(),y=m-g,b=x-f,v=Math.round(y/d/8*8),C=Math.round(b/p/8*8),[A,k]=[[v,v/y,r,"ceil"],[C,C/b,!l,"floor"]].map(([t,e,i,s])=>i?i=>Math[s](t-e*i):t=>Math[s](e*t)),w=n.width=v+1,M=w*(n.height=C+1),L=(u-1)/M,I=new Uint8ClampedArray(4*M),P=(t,e)=>4*Math.ceil(w*k(e-f)+A(t-g));t.buildKDTree();for(let t=0;t<M;t++){let e=c[Math.ceil(L*t)],{x:i,y:s}=e;I.set(F(e.value,e),P(i,s))}a.putImageData(new ImageData(I,w),0,0),e?e.attr({...h,href:n.toDataURL("image/png",1)}):(t.directTouch=!1,t.image=i.renderer.image(n.toDataURL("image/png",1)).attr(h).add(t.group))}t.isDirtyCanvas=!1}else(e.width!==a||e.height!==n)&&e.attr(h)}else(s.enabled||t._hasPointMarkers)&&(_.prototype.drawPoints.call(t),t.points.forEach(e=>{e.graphic&&(e.graphic[t.chart.styledMode?"css":"animate"](t.colorAttribs(e)),null===e.value&&e.graphic.addClass("highcharts-null-point"))}))}getSymbol(){this.symbol=this.options.marker?.symbol||"rect"}getExtremes(){let{dataMin:t,dataMax:e}=_.prototype.getExtremes.call(this,this.getColumn("value"));return(0,g.isNumber)(t)&&(this.valueMin=t),(0,g.isNumber)(e)&&(this.valueMax=e),_.prototype.getExtremes.call(this)}getValidPoints(t,e){return _.prototype.getValidPoints.call(this,t,e,!0)}hasData(){return!!this.dataTable.rowCount}init(){super.init.apply(this,arguments);let t=this.options;t.pointRange=(0,g.pick)(t.pointRange,t.colsize||1),this.yAxis.axisPointRange=t.rowsize||1,j.ellipse=j.circle,t.marker&&(0,g.isNumber)(t.borderRadius)&&(t.marker.r=t.borderRadius);let e=this.canvas=document.createElement("canvas");e&&(this.context=e?.getContext("webgpu"))}markerAttribs(t,e){let i=t.shapeArgs||{};if(t.hasImage)return{x:t.plotX,y:t.plotY};if(e&&"normal"!==e){let s=t.options.marker||{},o=this.options.marker||{},r=o.states?.[e]||{},a=s.states?.[e]||{},l=(a.width||r.width||i.width||0)+(a.widthPlus||r.widthPlus||0),n=(a.height||r.height||i.height||0)+(a.heightPlus||r.heightPlus||0);return{x:(i.x||0)+((i.width||0)-l)/2,y:(i.y||0)+((i.height||0)-n)/2,width:l,height:n}}return i}pointAttribs(t,e){let i=_.prototype.pointAttribs.call(this,t,e),s=this.options||{},o=this.chart.options.plotOptions||{},r=o.series||{},a=o.heatmap||{},l=t?.options.borderColor||s.borderColor||a.borderColor||r.borderColor,n=t?.options.borderWidth||s.borderWidth||a.borderWidth||r.borderWidth||i["stroke-width"];if(i.stroke=t?.marker?.lineColor||s.marker?.lineColor||l||this.color,i["stroke-width"]=n,e&&"normal"!==e){let o=(0,g.merge)(s.states?.[e],s.marker?.states?.[e],t?.options.marker?.states?.[e]||{});i.fill=o.color||b().parse(i.fill).brighten(o.brightness||0).get(),i.stroke=o.lineColor||i.stroke}return i}translate(){let{borderRadius:t,marker:e}=this.options,i=e?.symbol||"rect",s=j[i]?i:"rect",o=-1!==["circle","square"].indexOf(s);for(let e of(this.generatePoints(),this.points)){let r=e.getCellAttributes(),a=Math.min(r.x1,r.x2),l=Math.min(r.y1,r.y2),n=Math.max(Math.abs(r.x2-r.x1),0),h=Math.max(Math.abs(r.y2-r.y1),0);if(e.hasImage=0===(e.marker?.symbol||i||"").indexOf("url"),o){let t=Math.abs(n-h);a=Math.min(r.x1,r.x2)+(n<h?0:t/2),l=Math.min(r.y1,r.y2)+(n<h?t/2:0),n=h=Math.min(n,h)}e.hasImage&&(e.marker={width:n,height:h}),e.plotX=e.clientX=(r.x1+r.x2)/2,e.plotY=(r.y1+r.y2)/2,e.shapeType="path",e.shapeArgs=(0,g.merge)(!0,{x:a,y:l,width:n,height:h},{d:j[s](a,l,n,h,{r:(0,g.isNumber)(t)?t:0})})}(0,g.fireEvent)(this,"afterTranslate")}}Y.defaultOptions=(0,g.merge)(X.defaultOptions,{animation:!1,borderRadius:0,borderWidth:0,interpolation:!1,nullColor:"var(--highcharts-neutral-color-3)",dataLabels:{formatter:function(){let{numberFormatter:t}=this.series.chart,{value:e}=this.point;return(0,g.isNumber)(e)?t(e,-1):""},inside:!0,verticalAlign:"middle",crop:!1,overflow:"allow",padding:0},marker:{radius:0,lineColor:void 0,states:{hover:{lineWidthPlus:0},select:{}}},clip:!0,pointRange:null,tooltip:{pointFormat:"{point.x}, {point.y}: {point.value}<br/>"},states:{hover:{halo:!1,brightness:.2}},legendSymbol:"rectangle"}),(0,g.addEvent)(Y,"afterDataClassLegendClick",function(){this.isDirtyCanvas=!0,this.drawPoints(),this.options.enableMouseTracking&&this.drawTracker()}),(0,g.extend)(Y.prototype,{axisTypes:H.seriesMembers.axisTypes,colorKey:H.seriesMembers.colorKey,directTouch:!0,getExtremesFromAll:!0,keysAffectYAxis:["y"],parallelArrays:H.seriesMembers.parallelArrays,pointArrayMap:["y","value"],pointClass:G,specialGroup:"group",trackerGroups:H.seriesMembers.trackerGroups,alignDataLabel:K.prototype.alignDataLabel,colorAttribs:H.seriesMembers.colorAttribs}),H.compose(Y),M().registerSeriesType("heatmap",Y);let B=m();return u.default})());
@@ -0,0 +1,11 @@
1
+ !/**
2
+ * Highcharts JS v13.0.0 (2026-06-11)
3
+ * @module highcharts/modules/treemap
4
+ * @requires highcharts
5
+ *
6
+ * (c) 2014-2026 Highsoft AS
7
+ * Authors: Jon Arild Nygård / Øystein Moseng
8
+ *
9
+ * A commercial license may be required depending on use,
10
+ * see www.highcharts.com/license
11
+ */function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(t._Highcharts,t._Highcharts.Templating,t._Highcharts.Color,t._Highcharts.SeriesRegistry,t._Highcharts.SVGElement,t._Highcharts.Series):"function"==typeof define&&define.amd?define("highcharts/modules/treemap",["highcharts/highcharts"],function(t){return e(t,t.Templating,t.Color,t.SeriesRegistry,t.SVGElement,t.Series)}):"object"==typeof exports?exports["highcharts/modules/treemap"]=e(t._Highcharts,t._Highcharts.Templating,t._Highcharts.Color,t._Highcharts.SeriesRegistry,t._Highcharts.SVGElement,t._Highcharts.Series):t.Highcharts=e(t.Highcharts,t.Highcharts.Templating,t.Highcharts.Color,t.Highcharts.SeriesRegistry,t.Highcharts.SVGElement,t.Highcharts.Series)}("u"<typeof window?this:window,(t,e,i,s,r,o)=>(()=>{"use strict";var l,a,n={28:t=>{t.exports=r},512:t=>{t.exports=s},620:t=>{t.exports=i},820:t=>{t.exports=o},944:e=>{e.exports=t},984:t=>{t.exports=e}},h={};function d(t){var e=h[t];if(void 0!==e)return e.exports;var i=h[t]={exports:{}};return n[t](i,i.exports,d),i.exports}d.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return d.d(e,{a:e}),e},d.d=(t,e)=>{for(var i in e)d.o(e,i)&&!d.o(t,i)&&Object.defineProperty(t,i,{enumerable:!0,get:e[i]})},d.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);var p={};d.d(p,{default:()=>te});var u=d(944),c=d.n(u);let g={mainBreadcrumb:"Main"};var v=d(984);let{format:m}=d.n(v)(),{composed:b}=c();function f(){if(this.breadcrumbs){let t=this.resetZoomButton&&this.resetZoomButton.getBBox(),e=this.breadcrumbs.options;t&&"right"===e.position.align&&"plotBox"===e.relativeTo&&this.breadcrumbs.alignBreadcrumbsGroup(-t.width-e.buttonSpacing)}}function y(){this.breadcrumbs&&(this.breadcrumbs.destroy(),this.breadcrumbs=void 0)}function x(){let t=this.breadcrumbs;if(t&&!t.options.floating&&t.level){let e=t.options,i=e.buttonTheme,s=(i.height||0)+2*(i.padding||0)+e.buttonSpacing,r=e.position.verticalAlign;"bottom"===r?(this.marginBottom=(this.marginBottom||0)+s,t.yOffset=s):"middle"!==r?(this.plotTop+=s,t.yOffset=-s):t.yOffset=void 0}}function T(){this.breadcrumbs&&this.breadcrumbs.redraw()}function w(t){!0===t.resetSelection&&this.breadcrumbs&&this.breadcrumbs.alignBreadcrumbsGroup()}class L{static compose(t,e){(0,u.pushUnique)(b,"Breadcrumbs")&&((0,u.addEvent)(t,"destroy",y),(0,u.addEvent)(t,"afterShowResetZoom",f),(0,u.addEvent)(t,"getMargins",x),(0,u.addEvent)(t,"redraw",T),(0,u.addEvent)(t,"selection",w),(0,u.extend)(e.lang,g))}constructor(t,e){this.elementList={},this.isDirty=!0,this.level=0,this.list=[];const i=(0,u.merge)(t.options.drilldown&&t.options.drilldown.drillUpButton,L.defaultOptions,t.options.navigation&&t.options.navigation.breadcrumbs,e);this.chart=t,this.options=i||{}}updateProperties(t){this.setList(t),this.setLevel(),this.isDirty=!0}setList(t){this.list=t}setLevel(){this.level=this.list.length&&this.list.length-1}getLevel(){return this.level}getButtonText(t){let e=this.chart,i=this.options,s=e.options.lang,r=(0,u.pick)(i.format,i.showFullPath?"{level.name}":"← {level.name}"),o=s&&(0,u.pick)(s.drillUpText,s.mainBreadcrumb),l=i.formatter&&i.formatter(t)||m(r,{level:t.levelOptions},e)||"";return((0,u.isString)(l)&&!l.length||"← "===l)&&(0,u.defined)(o)&&(l=i.showFullPath?o:"← "+o),l}redraw(){this.isDirty&&this.render(),this.group&&this.group.align(),this.isDirty=!1}render(){let t=this.chart,e=this.options;!this.group&&e&&(this.group=t.renderer.g("breadcrumbs-group").addClass("highcharts-no-tooltip highcharts-breadcrumbs").attr({zIndex:e.zIndex}).add()),e.showFullPath?this.renderFullPathButtons():this.renderSingleButton(),this.alignBreadcrumbsGroup()}renderFullPathButtons(){this.destroySingleButton(),this.resetElementListState(),this.updateListElements(),this.destroyListElements()}renderSingleButton(){let t=this.chart,e=this.list,i=this.options.buttonSpacing;this.destroyListElements();let s=this.group?this.group.getBBox().width:i,r=e[e.length-2];!t.drillUpButton&&this.level>0?t.drillUpButton=this.renderButton(r,s,i):t.drillUpButton&&(this.level>0?this.updateSingleButton():this.destroySingleButton())}alignBreadcrumbsGroup(t){if(this.group){let e=this.options,i=e.buttonTheme,s=e.position,r="chart"===e.relativeTo||"spacingBox"===e.relativeTo?void 0:"plotBox",o=this.group.getBBox(),l=2*(i.padding||0)+e.buttonSpacing;s.width=o.width+l,s.height=o.height+l;let a=(0,u.merge)(s);t&&(a.x+=t),this.options.rtl&&(a.x+=s.width),a.y=(0,u.pick)(a.y,this.yOffset,0),this.group.align(a,!0,r)}}renderButton(t,e,i){let s=this,r=this.chart,o=s.options,l=(0,u.merge)(o.buttonTheme),a=r.renderer.button(s.getButtonText(t),e,i,function(e){let i,r=o.events&&o.events.click;r&&(i=r.call(s,e,t,s)),!1!==i&&(o.showFullPath?e.newLevel=t.level:e.newLevel=s.level-1,(0,u.fireEvent)(s,"up",e))},l).addClass("highcharts-breadcrumbs-button").add(s.group);return r.styledMode||a.attr(o.style),a}renderSeparator(t,e){let i=this.chart,s=this.options.separator,r=i.renderer.label(s.text,t,e,void 0,void 0,void 0,!1).addClass("highcharts-breadcrumbs-separator").add(this.group);return i.styledMode||r.css(s.style),r}update(t){(0,u.merge)(!0,this.options,t),this.destroy(),this.isDirty=!0}updateSingleButton(){let t=this.chart,e=this.list[this.level-1];t.drillUpButton&&t.drillUpButton.attr({text:this.getButtonText(e)})}destroy(){this.destroySingleButton(),this.destroyListElements(!0),this.group&&this.group.destroy(),this.group=void 0}destroyListElements(t){let e=this.elementList;(0,u.objectEach)(e,(i,s)=>{(t||!e[s].updated)&&((i=e[s]).button&&i.button.destroy(),i.separator&&i.separator.destroy(),delete i.button,delete i.separator,delete e[s])}),t&&(this.elementList={})}destroySingleButton(){this.chart.drillUpButton&&(this.chart.drillUpButton.destroy(),this.chart.drillUpButton=void 0)}resetElementListState(){(0,u.objectEach)(this.elementList,t=>{t.updated=!1})}updateListElements(){let t=this.elementList,e=this.options.buttonSpacing,i=this.list,s=this.options.rtl,r=s?-1:1,o=function(t,e){return r*t.getBBox().width+r*e},l=function(t,e,i){t.translate(e-t.getBBox().width,i)},a=this.group?o(this.group,e):e,n,h;for(let d=0,p=i.length;d<p;++d){let u,c,g=d===p-1;t[(h=i[d]).level]?(u=(n=t[h.level]).button,n.separator||g?n.separator&&g&&(n.separator.destroy(),delete n.separator):(a+=r*e,n.separator=this.renderSeparator(a,e),s&&l(n.separator,a,e),a+=o(n.separator,e)),t[h.level].updated=!0):(u=this.renderButton(h,a,e),s&&l(u,a,e),a+=o(u,e),g||(c=this.renderSeparator(a,e),s&&l(c,a,e),a+=o(c,e)),t[h.level]={button:u,separator:c,updated:!0}),u&&u.setState(2*!!g)}}}L.defaultOptions={buttonSpacing:5,buttonTheme:{fill:"none",height:18,padding:2,"stroke-width":0,zIndex:7,states:{select:{fill:"none"}},style:{color:"var(--highcharts-highlight-color-80)"}},floating:!1,format:void 0,relativeTo:"plotBox",rtl:!1,position:{align:"left",verticalAlign:"top",x:0,y:void 0},separator:{text:"/",style:{color:"var(--highcharts-neutral-color-60)",fontSize:"0.8em"}},showFullPath:!0,style:{},useHTML:!1,zIndex:7};var A=d(620),B=d.n(A),O=d(512),P=d.n(O),S=d(28),C=d.n(S);let{column:{prototype:N}}=P().seriesTypes;var M=l||(l={});function E(t){let e=this.series,i=e.chart.renderer;this.moveToTopOnHover&&this.graphic&&(e.stateMarkerGraphic||(e.stateMarkerGraphic=new(C())(i,"use").css({pointerEvents:"none"}).add(this.graphic.parentGroup)),t?.state==="hover"?(this.graphic.attr({id:this.id}),e.stateMarkerGraphic.attr({href:`${i.url}#${this.id}`,visibility:"visible"})):e.stateMarkerGraphic.attr({href:""}))}M.pointMembers={dataLabelOnNull:!0,moveToTopOnHover:!0,isValid:function(){return null!==this.value&&this.value!==1/0&&this.value!==-1/0&&(void 0===this.value||!isNaN(this.value))}},M.seriesMembers={colorKey:"value",axisTypes:["xAxis","yAxis","colorAxis"],parallelArrays:["x","y","value"],pointArrayMap:["value"],trackerGroups:["group","markerGroup","dataLabelsGroup"],colorAttribs:function(t){let e={};return(0,u.defined)(t.color)&&(!t.state||"normal"===t.state)&&(e[this.colorProp||"fill"]=t.color),e},pointAttribs:N.pointAttribs},M.compose=function(t){let e=t.prototype.pointClass;return(0,u.addEvent)(e,"afterSetState",E),t};let R=l;var k=d(820),D=d.n(k);let I=class{constructor(t,e,i,s){this.height=t,this.width=e,this.plot=s,this.direction=i,this.startDirection=i,this.total=0,this.nW=0,this.lW=0,this.nH=0,this.lH=0,this.elArr=[],this.lP={total:0,lH:0,nH:0,lW:0,nW:0,nR:0,lR:0,aspectRatio:function(t,e){return Math.max(t/e,e/t)}}}addElement(t){this.lP.total=this.elArr[this.elArr.length-1],this.total=this.total+t,0===this.direction?(this.lW=this.nW,this.lP.lH=this.lP.total/this.lW,this.lP.lR=this.lP.aspectRatio(this.lW,this.lP.lH),this.nW=this.total/this.height,this.lP.nH=this.lP.total/this.nW,this.lP.nR=this.lP.aspectRatio(this.nW,this.lP.nH)):(this.lH=this.nH,this.lP.lW=this.lP.total/this.lH,this.lP.lR=this.lP.aspectRatio(this.lP.lW,this.lH),this.nH=this.total/this.width,this.lP.nW=this.lP.total/this.nH,this.lP.nR=this.lP.aspectRatio(this.lP.nW,this.nH)),this.elArr.push(t)}reset(){this.nW=0,this.lW=0,this.elArr=[],this.total=0}},H=function(t,e){let{animatableAttribs:i,onComplete:s,css:r,renderer:o}=e,l=t.series&&t.series.chart.hasRendered?void 0:t.series&&t.series.options.animation,a=t.graphic;if(e.attribs={...e.attribs,class:t.getClassName()},t.shouldDraw())a||(t.graphic=a="text"===e.shapeType?o.text():"image"===e.shapeType?o.image(e.imageUrl||"").attr(e.shapeArgs||{}):o[e.shapeType](e.shapeArgs||{}),a.add(e.group)),r&&a.css(r),a.attr(e.attribs).animate(i,!e.isNew&&l,s);else if(a){let e=()=>{t.graphic=a=a&&a.destroy(),"function"==typeof s&&s()};Object.keys(i).length?a.animate(i,void 0,()=>e()):e()}},{pie:{prototype:{pointClass:G}},scatter:{prototype:{pointClass:V}}}=P().seriesTypes;class U extends V{constructor(){super(...arguments),this.groupedPointsAmount=0,this.shapeType="rect"}draw(t){H(this,t)}getClassName(){let t=this.series,e=t.options,i=super.getClassName();return this.node.level<=t.nodeMap[t.rootNode].level&&this.node.children.length?i+=" highcharts-above-level":this.node.isGroup||this.node.isLeaf||t.nodeMap[t.rootNode].isGroup||(0,u.pick)(e.interactByLeaf,!e.allowTraversingTree)?this.node.isGroup||this.node.isLeaf||t.nodeMap[t.rootNode].isGroup||(i+=" highcharts-internal-node"):i+=" highcharts-internal-node-interactive",i}isValid(){return!!(this.id||(0,u.isNumber)(this.value))}setState(t){super.setState.apply(this,arguments),this.graphic&&this.graphic.attr({zIndex:+("hover"===t)})}shouldDraw(){return(0,u.isNumber)(this.plotY)&&null!==this.y}}(0,u.extend)(U.prototype,{setVisible:G.prototype.setVisible});let W={allowTraversingTree:!1,animationLimit:250,borderRadius:0,showInLegend:!1,marker:void 0,colorByPoint:!1,dataLabels:{enabled:!0,formatter:function(){let t=this&&this.point?this.point:{};return(0,u.isString)(t.name)?t.name:""},headers:!1,inside:!0,padding:2,verticalAlign:"middle",style:{textOverflow:"ellipsis"}},tooltip:{headerFormat:"",pointFormat:"<b>{point.name}</b>: {point.value}<br/>",clusterFormat:"+ {point.groupedPointsAmount} more...<br/>"},ignoreHiddenPoint:!0,layoutAlgorithm:"sliceAndDice",layoutStartingDirection:"vertical",alternateStartingDirection:!1,levelIsConstant:!0,traverseUpButton:{position:{align:"right",x:-10,y:10}},borderColor:"var(--highcharts-neutral-color-10)",borderWidth:1,colorKey:"colorValue",opacity:.15,states:{hover:{borderColor:"var(--highcharts-neutral-color-40)",brightness:.1*!P().seriesTypes.heatmap,halo:!1,opacity:.75,shadow:!1}},legendSymbol:"rectangle",traverseToLeaf:!1,cluster:{className:void 0,color:void 0,enabled:!1,pixelWidth:void 0,pixelHeight:void 0,name:void 0,reductionFactor:void 0,minimumClusterSize:5,layoutAlgorithm:{distance:0,gridSize:0,kmeansThreshold:0},marker:{lineWidth:0,radius:0}}};(a||(a={})).recursive=function t(e,i,s){let r=i.call(s||this,e);!1!==r&&t(r,i,s)};let F=a,{parse:j}=B(),{composed:z,noop:_}=c(),{column:$,scatter:K}=P().seriesTypes,{getColor:Y,getLevelOptions:q,updateRootId:Z}={getColor:function(t,e){let i,s,r,o,l,a,n=e.index,h=e.mapOptionsToLevel,d=e.parentColor,p=e.parentColorIndex,c=e.series,g=e.colors,v=e.siblings,m=c.points,b=c.chart.options.chart;if(t){let f;i=m[t.i],s=h[t.level]||{},i&&s.colorByPoint&&(o=i.index%(g?g.length:b.colorCount),r=g&&g[o]),c.chart.styledMode||(l=(0,u.pick)(i&&i.options.color,s&&s.color,r,d&&((f=s&&s.colorVariation)&&"brightness"===f.key&&n&&v?B().parse(d).brighten(f.to*(n/v)).get():d),c.color)),a=(0,u.pick)(i&&i.options.colorIndex,s&&s.colorIndex,o,p,e.colorIndex)}return{color:l,colorIndex:a}},getLevelOptions:function(t){let e,i,s,r,o,l,a={};if((0,u.isObject)(t))for(r=(0,u.isNumber)(t.from)?t.from:1,l=t.levels,i={},e=(0,u.isObject)(t.defaults)?t.defaults:{},(0,u.isArray)(l)&&(i=l.reduce((t,i)=>{let s,o,l;return(0,u.isObject)(i)&&(0,u.isNumber)(i.level)&&(l=(0,u.merge)({},i),o=(0,u.pick)(l.levelIsConstant,e.levelIsConstant),delete l.levelIsConstant,delete l.level,s=i.level+(o?0:r-1),(0,u.isObject)(t[s])?(0,u.merge)(!0,t[s],l):t[s]=l),t},{})),o=(0,u.isNumber)(t.to)?t.to:1,s=0;s<=o;s++)a[s]=(0,u.merge)({},e,(0,u.isObject)(i[s])?i[s]:{});return a},getNodeWidth:function(t,e){let{chart:i,options:s}=t,{nodeDistance:r=0,nodeWidth:o=0}=s,{plotSizeX:l=1}=i;if("auto"===o){if("string"==typeof r&&/%$/.test(r))return l/(e+parseFloat(r)/100*(e-1));let t=Number(r);return(l+t)/(e||1)-t}return(0,u.relativeLength)(o,l)},setTreeValues:function t(e,i){let s=i.before,r=i.idRoot,o=i.mapIdToNode[r],l=!1!==i.levelIsConstant,a=i.points[e.i],n=a&&a.options||{},h=[],d=0;e.levelDynamic=e.level-(l?0:o.level),e.name=(0,u.pick)(a&&a.name,""),e.visible=r===e.id||!0===i.visible,"function"==typeof s&&(e=s(e,i)),e.children.forEach((s,r)=>{let o=(0,u.extend)({},i);(0,u.extend)(o,{index:r,siblings:e.children.length,visible:e.visible}),s=t(s,o),h.push(s),s.visible&&(d+=s.val)});let p=(0,u.pick)(n.value,d);return e.visible=p>=0&&(d>0||e.visible),e.children=h,e.childrenTotal=d,e.isLeaf=e.visible&&!d,e.val=p,e},updateRootId:function(t){let e,i;return(0,u.isObject)(t)&&(i=(0,u.isObject)(t.options)?t.options:{},e=(0,u.pick)(t.rootNode,i.rootId,""),(0,u.isObject)(t.userOptions)&&(t.userOptions.rootId=e),t.rootNode=e),e}};D().keepProps.push("simulation","hadOutsideDataLabels");let X=!1;function J(){let t=this.xAxis,e=this.yAxis;if(t&&e)if(this.is("treemap")){let i={endOnTick:!1,startOnTick:!1,visible:!1};this.is("treegraph")||(i.min=0,i.max=100,i.tickPositions=[]),(0,u.merge)(!0,t.options,i,t.userOptions),(0,u.merge)(!0,e.options,i,e.userOptions),t.visible=t.options.visible,e.visible=e.options.visible,this.is("treegraph")&&(this.isCartesian=t.visible),X=!0}else X&&(e.setOptions(e.userOptions),t.setOptions(t.userOptions),X=!1)}class Q extends K{constructor(){super(...arguments),this.simulation=0}static compose(t){(0,u.pushUnique)(z,"TreemapSeries")&&(0,u.addEvent)(t,"afterBindAxes",J)}algorithmCalcPoints(t,e,i,s){let r=i.plot,o=i.elArr.length-1,l,a,n,h,d=i.lW,p=i.lH,c,g=0;for(let t of(e?(d=i.nW,p=i.nH):c=i.elArr[o],i.elArr))(e||g<o)&&(0===i.direction?(l=r.x,a=r.y,h=t/(n=d)):(l=r.x,a=r.y,n=t/(h=p)),s.push({x:l,y:a,width:n,height:(0,u.correctFloat)(h)}),0===i.direction?r.y=r.y+h:r.x=r.x+n),g+=1;i.reset(),0===i.direction?i.width=i.width-d:i.height=i.height-p,r.y=r.parent.y+(r.parent.height-i.height),r.x=r.parent.x+(r.parent.width-i.width),t&&(i.direction=1-i.direction),e||i.addElement(c)}algorithmFill(t,e,i){let s=[],r,o=e.direction,l=e.x,a=e.y,n=e.width,h=e.height,d,p,u,c;for(let g of i)r=e.width*e.height*(g.val/e.val),d=l,p=a,0===o?(n-=u=r/(c=h),l+=u):(h-=c=r/(u=n),a+=c),s.push({x:d,y:p,width:u,height:c,direction:0,val:0}),t&&(o=1-o);return s}algorithmLowAspectRatio(t,e,i){let s=[],r={x:e.x,y:e.y,parent:e},o=e.direction,l=i.length-1,a=new I(e.height,e.width,o,r),n,h=0;for(let o of i)n=e.width*e.height*(o.val/e.val),a.addElement(n),a.lP.nR>a.lP.lR&&this.algorithmCalcPoints(t,!1,a,s,r),h===l&&this.algorithmCalcPoints(t,!0,a,s,r),++h;return s}alignDataLabel(t,e,i){$.prototype.alignDataLabel.apply(this,arguments),t.dataLabel&&t.dataLabel.attr({zIndex:(t.node.zIndex||0)+1})}applyTreeGrouping(){let t=this,e=t.parentList||{},{cluster:i}=t.options,s=i?.minimumClusterSize||5;if(i?.enabled){let r={},o=t=>{if(t?.point?.shapeArgs){let{width:e=0,height:s=0}=t.point.shapeArgs,{pixelWidth:o=0,pixelHeight:l=0}=i,a=(0,u.defined)(l),n=l?o*l:o*o;(e<o||s<(a?l:o)||e*s<n)&&!t.isGroup&&(0,u.defined)(t.parent)&&(r[t.parent]||(r[t.parent]=[]),r[t.parent].push(t))}t?.children.forEach(t=>{o(t)})};for(let l in o(t.tree),r)r[l]&&r[l].length>s&&r[l].forEach(s=>{let r=e[l].indexOf(s.i);if(-1!==r){e[l].splice(r,1);let o=`highcharts-grouped-treemap-points-${s.parent||"root"}`,a=t.points.find(t=>t.id===o);if(!a){let s=t.pointClass,r=t.points.length;a=new s(t,{className:i.className,color:i.color,id:o,index:r,isGroup:!0,value:0}),(0,u.extend)(a,{formatPrefix:"cluster"}),t.points.push(a),e[l].push(r),e[o]=[]}let n=a.groupedPointsAmount+1,h=t.points[a.index].options.value||0,d=i.name||`+ ${n}`;t.points[a.index].groupedPointsAmount=n,t.points[a.index].options.value=h+(s.point.value||0),t.points[a.index].name=d,e[o].push(s.point.index)}});t.nodeMap={},t.nodeList=[],t.parentList=e;let l=t.buildTree("",-1,0,t.parentList);t.translate(l)}}calculateChildrenAreas(t,e){let i=this.options,s=this.mapOptionsToLevel[t.level+1],r=(0,u.pick)(s?.layoutAlgorithm&&this[s?.layoutAlgorithm]&&s.layoutAlgorithm,i.layoutAlgorithm),o=i.alternateStartingDirection,l=t.children.filter(e=>t.isGroup||!e.ignore),a=s?.groupPadding??i.groupPadding??0,n=this.nodeMap[this.rootNode];if(!r)return;let h=[],d=n.pointValues?.width||0,p=n.pointValues?.height||0;s?.layoutStartingDirection&&(e.direction=+("vertical"!==s.layoutStartingDirection)),h=this[r](e,l);let c=-1;for(let t of l){let i=h[++c];t===n&&(d=d||i.width,p=i.height);let s=a/(this.xAxis.len/p),r=a/(this.yAxis.len/p);if(t.values=(0,u.merge)(i,{val:t.childrenTotal,direction:o?1-e.direction:e.direction}),t.children.length&&t.point.dataLabels?.length){let e=(0,u.arrayMax)(t.point.dataLabels.map(t=>t.options?.headers&&t.height||0))/(this.yAxis.len/p);e<t.values.height/2&&(t.values.y+=e,t.values.height-=e)}if(a){let e=Math.min(s,t.values.width/4),i=Math.min(r,t.values.height/4);t.values.x+=e,t.values.width-=2*e,t.values.y+=i,t.values.height-=2*i}t.pointValues=(0,u.merge)(i,{x:i.x/this.axisRatio,y:100-i.y-i.height,width:i.width/this.axisRatio}),t.children.length&&this.calculateChildrenAreas(t,t.values)}let g=(t,e=[],i=!0)=>(t.children.forEach(t=>{i&&t.isLeaf?e.push(t.point):i||t.isLeaf||e.push(t.point),t.children.length&&g(t,e,i)}),e);if("leaf"===i.nodeSizeBy&&t===n&&this.hasOutsideDataLabels&&!g(n,void 0,!1).some(t=>(0,u.isNumber)(t.options.value))&&!(0,u.isNumber)(n.point?.options.value)){let i=g(n),s=i.map(t=>t.options.value||0),r=i.map(({node:{pointValues:t}})=>t?t.width*t.height:0),o=s.reduce((t,e)=>t+e,0),l=r.reduce((t,e)=>t+e,0)/o,a=0,h=0;i.forEach((t,e)=>{let i=s[e]?r[e]/s[e]:1,o=(0,u.clamp)(i/l,.8,1.4),n=1-o;t.value&&(r[e]<20&&(n*=r[e]/20),n>h&&(h=n),n<a&&(a=n),t.simulatedValue=(t.simulatedValue||t.value)/o)}),(a<-.05||h>.05)&&this.simulation<10?(this.simulation++,this.setTreeValues(t),e.val=t.val,this.calculateChildrenAreas(t,e)):(i.forEach(t=>{delete t.simulatedValue}),this.setTreeValues(t),this.simulation=0)}}createList(t){let e=this.chart,i=e.breadcrumbs,s=[];if(i){let i=0;s.push({level:i,levelOptions:e.series[0]});let r=t.target.nodeMap[t.newRootId],o=[];for(;r.parent||""===r.parent;)o.push(r),r=t.target.nodeMap[r.parent];for(let t of o.reverse())s.push({level:++i,levelOptions:t});s.length<=1&&(s.length=0)}return s}drawDataLabels(){let t=this.mapOptionsToLevel,e=this.points.filter(function(t){return t.node.visible||(0,u.defined)(t.dataLabel)}),i=(0,u.splat)(this.options.dataLabels||{})[0]?.padding,s=e.some(t=>(0,u.isNumber)(t.plotY));for(let r of e){let e={},o={style:e},l=t[r.node.level];if((!r.node.isLeaf&&!r.node.isGroup||r.node.isGroup&&r.node.level<=this.nodeMap[this.rootNode].level)&&(o.enabled=!1),l?.dataLabels&&((0,u.merge)(!0,o,(0,u.splat)(l.dataLabels)[0]),this.hasDataLabels=()=>!0),r.node.isLeaf?o.inside=!0:o.headers&&(o.verticalAlign="top"),r.shapeArgs&&s){let{height:t=0,width:s=0}=r.shapeArgs;if(s>32&&t>16&&r.shouldDraw()){let l=s-2*((0,u.splat)(o.padding)[0]||(0,u.splat)(i)[0]||0);e.width=`${l}px`,e.lineClamp??(e.lineClamp=Math.floor(t/16)),this.options.allowTraversingTree&&(e.visibility="inherit"),r.dataLabel?.attr({width:o.headers?l:void 0})}else e.width=`${s}px`,e.visibility="hidden"}r.dlOptions=(0,u.merge)(o,r.options.dataLabels,{zIndex:void 0}),delete r.dlOptions.zIndex}super.drawDataLabels(e)}drawPoints(t=this.points){let e=this.chart,i=e.renderer,s=e.styledMode,r=this.options,o=s?{}:r.shadow,l=r.borderRadius,a=e.pointCount<r.animationLimit,n=r.allowTraversingTree;for(let e of t){let t={},h={},d={},p="level-group-"+e.node.level,c=!!e.graphic,g=a&&c,v=e.shapeArgs;e.shouldDraw()&&(e.isInside=!0,l&&(h.r=l),(0,u.merge)(!0,g?t:h,c?v:{},s?{}:this.pointAttribs(e,e.selected?"select":void 0)),this.colorAttribs&&s&&(0,u.extend)(d,this.colorAttribs(e)),this[p]||(this[p]=i.g(p).attr({zIndex:-(e.node.level||0)}).add(this.group),this[p].survive=!0)),e.draw({animatableAttribs:t,attribs:h,css:d,group:this[p],imageUrl:e.imageUrl,renderer:i,shadow:o,shapeArgs:v,shapeType:e.shapeType}),n&&e.graphic&&(e.drillId=r.interactByLeaf?this.drillToByLeaf(e):this.drillToByGroup(e))}}drillToByGroup(t){return(!t.node.isLeaf||!!t.node.isGroup)&&t.id}drillToByLeaf(t){let{traverseToLeaf:e}=t.series.options,i=!1,s;if(t.node.parent!==this.rootNode&&t.node.isLeaf)if(e)i=t.id;else for(s=t.node;!i;)void 0!==s.parent&&(s=this.nodeMap[s.parent]),s.parent===this.rootNode&&(i=s.id);return i}drillToNode(t,e){(0,u.error)(32,!1,void 0,{"treemap.drillToNode":"use treemap.setRootNode"}),this.setRootNode(t,e)}drillUp(){let t=this.nodeMap[this.rootNode];t&&(0,u.isString)(t.parent)&&this.setRootNode(t.parent,!0,{trigger:"traverseUpButton"})}getExtremes(){let{dataMin:t,dataMax:e}=super.getExtremes(this.colorValueData);return this.valueMin=t,this.valueMax=e,super.getExtremes()}getListOfParents(t,e){let i=(0,u.isArray)(t)?t:[],s=(0,u.isArray)(e)?e:[],r=i.reduce(function(t,e,i){let s=(0,u.pick)(e.parent,"");return void 0===t[s]&&(t[s]=[]),t[s].push(i),t},{"":[]});for(let t of Object.keys(r)){let e=r[t];if(""!==t&&-1===s.indexOf(t)){for(let t of e)r[""].push(t);delete r[t]}}return r}getTree(){let t=this.data.map(function(t){return t.id});return this.parentList=this.getListOfParents(this.data,t),this.nodeMap={},this.nodeList=[],this.buildTree("",-1,0,this.parentList||{})}buildTree(t,e,i,s,r){let o=[],l=this.points[e],a=0,n;for(let e of s[t]||[])a=Math.max((n=this.buildTree(this.points[e].id,e,i+1,s,t)).height+1,a),o.push(n),this.is("treegraph")&&(n.visible=!0);let h=new this.NodeClass().init(t,e,o,a,i,this,r);for(let t of o)t.parentNode=h;return this.nodeMap[h.id]=h,this.nodeList.push(h),l&&(l.node=h,h.point=l,(0,u.defined)(l.options.x)||(l.x=i)),h}hasData(){return!!this.dataTable.rowCount}init(t,e){let i=this,s=(0,u.merge)(e.drillUpButton,e.breadcrumbs),r=(0,u.addEvent)(i,"setOptions",t=>{let e=t.userOptions;(0,u.defined)(e.allowDrillToNode)&&!(0,u.defined)(e.allowTraversingTree)&&(e.allowTraversingTree=e.allowDrillToNode,delete e.allowDrillToNode),(0,u.defined)(e.drillUpButton)&&!(0,u.defined)(e.traverseUpButton)&&(e.traverseUpButton=e.drillUpButton,delete e.drillUpButton);let i=(0,u.splat)(e.dataLabels||{});e.levels?.forEach(t=>{i.push.apply(i,(0,u.splat)(t.dataLabels||{}))}),this.hasOutsideDataLabels=i.some(t=>t.headers)});super.init(t,e),delete i.opacity,i.eventsToUnbind.push(r),i.options.allowTraversingTree&&(i.eventsToUnbind.push((0,u.addEvent)(i,"click",i.onClickDrillToNode)),i.eventsToUnbind.push((0,u.addEvent)(i,"setRootNode",function(t){let e=i.chart;e.breadcrumbs&&e.breadcrumbs.updateProperties(i.createList(t))})),i.eventsToUnbind.push((0,u.addEvent)(i,"update",function(t,e){let i=this.chart.breadcrumbs;i&&t.options.breadcrumbs&&i.update(t.options.breadcrumbs),this.hadOutsideDataLabels=this.hasOutsideDataLabels})),i.eventsToUnbind.push((0,u.addEvent)(i,"destroy",function(t){let e=this.chart;e.breadcrumbs&&!t.keepEventsForUpdate&&(e.breadcrumbs.destroy(),e.breadcrumbs=void 0)}))),t.breadcrumbs||(t.breadcrumbs=new L(t,s)),i.eventsToUnbind.push((0,u.addEvent)(t.breadcrumbs,"up",function(t){let e=this.level-t.newLevel;for(let t=0;t<e;t++)i.drillUp()}))}onClickDrillToNode(t){let e=t.point,i=e?.drillId;(0,u.isString)(i)&&(e.setState(""),this.setRootNode(i,!0,{trigger:"click"}))}pointAttribs(t,e){let i=(0,u.isObject)(this.mapOptionsToLevel)?this.mapOptionsToLevel:{},s=t?.node&&i[t.node.level]||{},r=this.options,o=e&&r.states&&r.states[e]||{},l=t?.node&&t.getClassName()||"",a={stroke:t&&t.borderColor||s.borderColor||o.borderColor||r.borderColor,"stroke-width":(0,u.pick)(t&&t.borderWidth,s.borderWidth,o.borderWidth,r.borderWidth),dashstyle:t?.borderDashStyle||s.borderDashStyle||o.borderDashStyle||r.borderDashStyle,fill:t?.color||this.color};return -1!==l.indexOf("highcharts-above-level")?(a.fill="none",a["stroke-width"]=0):-1!==l.indexOf("highcharts-internal-node-interactive")?(a["fill-opacity"]=o.opacity??r.opacity??1,a.cursor="pointer"):-1!==l.indexOf("highcharts-internal-node")?a.fill="none":e&&o.brightness&&(a.fill=j(a.fill).brighten(o.brightness).get()),a}setColorRecursive(t,e,i,s,r){let o=this?.chart,l=o?.options?.colors;if(t){let o=Y(t,{colors:l,index:s,mapOptionsToLevel:this.mapOptionsToLevel,parentColor:e,parentColorIndex:i,series:this,siblings:r}),a=this.points[t.i];a&&(a.color=o.color,a.colorIndex=o.colorIndex);let n=-1;for(let e of t.children||[])this.setColorRecursive(e,o.color,o.colorIndex,++n,t.children.length)}}setPointValues(){let t=this,{points:e,xAxis:i,yAxis:s}=t,r=t.chart.styledMode,o=e=>r?0:t.pointAttribs(e)["stroke-width"]||0;for(let t of e){let{pointValues:e,visible:r}=t.node;if(e&&r){let{height:r,width:l,x:a,y:n}=e,h=o(t),d=i.toPixels(a,!0),p=i.toPixels(a+l,!0),c=s.toPixels(n,!0),g=s.toPixels(n+r,!0),v=0===d?h/2:(0,u.crisp)(i.toPixels(a,!0),h,!0),m=p===i.len?i.len-h/2:(0,u.crisp)(i.toPixels(a+l,!0),h,!0),b=c===s.len?s.len-h/2:(0,u.crisp)(s.toPixels(n,!0),h,!0),f=0===g?h/2:(0,u.crisp)(s.toPixels(n+r,!0),h,!0),y={x:Math.min(v,m),y:Math.min(b,f),width:Math.abs(m-v),height:Math.abs(f-b)};t.plotX=y.x+y.width/2,t.plotY=y.y+y.height/2,t.shapeArgs=y}else delete t.plotX,delete t.plotY}}setRootNode(t,e,i){let s=(0,u.extend)({newRootId:t,previousRootId:this.rootNode,redraw:(0,u.pick)(e,!0),series:this},i);(0,u.fireEvent)(this,"setRootNode",s,function(t){let e=t.series;e.idPreviousRoot=t.previousRootId,e.rootNode=t.newRootId,e.isDirty=!0,t.redraw&&e.chart.redraw()})}setState(t){this.options.inactiveOtherPoints=!0,super.setState(t,!1),this.options.inactiveOtherPoints=!1}setTreeValues(t){let e=this.options,i=this.rootNode,s=this.nodeMap[i],r="boolean"!=typeof e.levelIsConstant||e.levelIsConstant,o=[],l=this.points[t.i],a=0;for(let e of t.children)e=this.setTreeValues(e),o.push(e),e.ignore||(a+=e.val);(0,u.stableSort)(o,(t,e)=>(t.sortIndex||0)-(e.sortIndex||0));let n=(0,u.pick)(l?.simulatedValue,l?.options.value,a);return l&&(l.value=n),l?.isGroup&&e.cluster?.reductionFactor&&(n/=e.cluster.reductionFactor),t.parentNode?.point?.isGroup&&this.rootNode!==t.parent&&(t.visible=!1),(0,u.extend)(t,{children:o,childrenTotal:a,ignore:!((0,u.pick)(l?.visible,!0)&&n>0),isLeaf:t.visible&&!("treegraph"===this.type?o.length>0:a),isGroup:l?.isGroup,levelDynamic:t.level-(r?0:s.level),name:(0,u.pick)(l?.name,""),sortIndex:(0,u.pick)(l?.sortIndex,-n),val:n}),t}sliceAndDice(t,e){return this.algorithmFill(!0,t,e)}squarified(t,e){return this.algorithmLowAspectRatio(!0,t,e)}strip(t,e){return this.algorithmLowAspectRatio(!1,t,e)}stripes(t,e){return this.algorithmFill(!1,t,e)}translate(t){let e=this,i=e.options,s=!t,r=Z(e),o,l,a,n;t||r.startsWith("highcharts-grouped-treemap-points-")||((this.points||[]).forEach(t=>{t.isGroup&&t.destroy()}),super.translate(),t=e.getTree()),e.tree=t=t||e.tree,o=e.nodeMap[r],""===r||o||(e.setRootNode("",!1),r=e.rootNode,o=e.nodeMap[r]),o.point?.isGroup||(e.mapOptionsToLevel=q({from:o.level+1,levels:i.levels,to:t.height,defaults:{levelIsConstant:e.options.levelIsConstant,colorByPoint:i.colorByPoint}})),F.recursive(e.nodeMap[e.rootNode],t=>{let i=t.parent,s=!1;return t.visible=!0,(i||""===i)&&(s=e.nodeMap[i]),s}),F.recursive(e.nodeMap[e.rootNode].children,t=>{let e=!1;for(let i of t)i.visible=!0,i.children.length&&(e=(e||[]).concat(i.children));return e}),e.setTreeValues(t),e.axisRatio=e.xAxis.len/e.yAxis.len,e.nodeMap[""].pointValues=l={x:0,y:0,width:100,height:100},e.nodeMap[""].values=a=(0,u.merge)(l,{width:l.width*e.axisRatio,direction:+("vertical"!==i.layoutStartingDirection),val:t.val}),(this.hasOutsideDataLabels||this.hadOutsideDataLabels)&&this.drawDataLabels(),e.calculateChildrenAreas(t,a),e.colorAxis||i.colorByPoint||e.setColorRecursive(e.tree),i.allowTraversingTree&&o.pointValues&&(n=o.pointValues,e.xAxis.setExtremes(n.x,n.x+n.width,!1),e.yAxis.setExtremes(n.y,n.y+n.height,!1),e.xAxis.setScale(),e.yAxis.setScale()),e.setPointValues(),s&&e.applyTreeGrouping()}}Q.defaultOptions=(0,u.merge)(K.defaultOptions,W),(0,u.extend)(Q.prototype,{buildKDTree:_,colorAttribs:R.seriesMembers.colorAttribs,colorKey:"colorValue",directTouch:!0,getExtremesFromAll:!0,getSymbol:_,optionalAxis:"colorAxis",parallelArrays:["x","y","value","colorValue"],pointArrayMap:["value","colorValue"],pointClass:U,NodeClass:class{constructor(){this.childrenTotal=0,this.visible=!1}init(t,e,i,s,r,o,l){return this.id=t,this.i=e,this.children=i,this.height=s,this.level=r,this.series=o,this.parent=l,this}},trackerGroups:["group","dataLabelsGroup"],utils:F}),R.compose(Q),P().registerSeriesType("treemap",Q);let tt=c();tt.Breadcrumbs=tt.Breadcrumbs||L,tt.Breadcrumbs.compose(tt.Chart,tt.defaultOptions),Q.compose(tt.Series);let te=c();return p.default})());