@visactor/vtable-gantt 1.25.0 → 1.25.1-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -63,5 +63,4 @@ class EventTarget {
63
63
  }
64
64
  }
65
65
 
66
- exports.EventTarget = EventTarget;
67
- //# sourceMappingURL=EventTarget.js.map
66
+ exports.EventTarget = EventTarget;
@@ -83,4 +83,5 @@ function isTouchEvent(e) {
83
83
  return !!e.changedTouches;
84
84
  }
85
85
 
86
+ //# sourceMappingURL=touch.js.map
86
87
  exports.bindTouchListener = bindTouchListener;
package/cjs/index.d.ts CHANGED
@@ -6,5 +6,5 @@ import * as tools from './tools';
6
6
  import * as VRender from './vrender';
7
7
  import * as VTable from './vtable';
8
8
  import * as plugins from './plugins';
9
- export declare const version = "1.25.0";
9
+ export declare const version = "1.25.1-alpha.1";
10
10
  export { TYPES, GanttConstructorOptions, Gantt, ColumnsDefine, ColumnDefine, LinkColumnDefine, ChartColumnDefine, ImageColumnDefine, SparklineColumnDefine, ProgressbarColumnDefine, TextColumnDefine, GroupColumnDefine, TextAlignType, TextBaselineType, tools, VRender, VTable, plugins };
package/cjs/index.js CHANGED
@@ -56,5 +56,5 @@ exports.VTable = VTable;
56
56
 
57
57
  const plugins = __importStar(require("./plugins"));
58
58
 
59
- exports.plugins = plugins, exports.version = "1.25.0";
59
+ exports.plugins = plugins, exports.version = "1.25.1-alpha.1";
60
60
  //# sourceMappingURL=index.js.map
package/cjs/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AACA,kDAAoC;AAwBlC,sBAAK;AAVP,mCAAgC;AAY9B,sFAZO,aAAK,OAYP;AAXP,+CAAiC;AAuB/B,sBAAK;AAtBP,mDAAqC;AAuBnC,0BAAO;AAtBT,iDAAmC;AAuBjC,wBAAM;AAtBR,mDAAqC;AAuBnC,0BAAO;AAtBI,QAAA,OAAO,GAAG,QAAQ,CAAC","file":"index.js","sourcesContent":["import type { GanttConstructorOptions } from './ts-types';\nimport * as TYPES from './ts-types';\nimport type {\n ColumnDefine,\n ColumnsDefine,\n LinkColumnDefine,\n ChartColumnDefine,\n ImageColumnDefine,\n SparklineColumnDefine,\n ProgressbarColumnDefine,\n TextColumnDefine,\n GroupColumnDefine,\n TextAlignType,\n TextBaselineType\n} from '@visactor/vtable';\nimport { Gantt } from './Gantt';\nimport * as tools from './tools';\nimport * as VRender from './vrender';\nimport * as VTable from './vtable';\nimport * as plugins from './plugins';\nexport const version = \"1.25.0\";\n/**\n * @namespace VTableGantt\n */\nexport {\n TYPES,\n GanttConstructorOptions,\n Gantt,\n ColumnsDefine,\n ColumnDefine,\n LinkColumnDefine,\n ChartColumnDefine,\n ImageColumnDefine,\n SparklineColumnDefine,\n ProgressbarColumnDefine,\n TextColumnDefine,\n GroupColumnDefine,\n TextAlignType,\n TextBaselineType,\n tools,\n VRender,\n VTable,\n plugins\n};\n"]}
1
+ {"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AACA,kDAAoC;AAwBlC,sBAAK;AAVP,mCAAgC;AAY9B,sFAZO,aAAK,OAYP;AAXP,+CAAiC;AAuB/B,sBAAK;AAtBP,mDAAqC;AAuBnC,0BAAO;AAtBT,iDAAmC;AAuBjC,wBAAM;AAtBR,mDAAqC;AAuBnC,0BAAO;AAtBI,QAAA,OAAO,GAAG,gBAAgB,CAAC","file":"index.js","sourcesContent":["import type { GanttConstructorOptions } from './ts-types';\nimport * as TYPES from './ts-types';\nimport type {\n ColumnDefine,\n ColumnsDefine,\n LinkColumnDefine,\n ChartColumnDefine,\n ImageColumnDefine,\n SparklineColumnDefine,\n ProgressbarColumnDefine,\n TextColumnDefine,\n GroupColumnDefine,\n TextAlignType,\n TextBaselineType\n} from '@visactor/vtable';\nimport { Gantt } from './Gantt';\nimport * as tools from './tools';\nimport * as VRender from './vrender';\nimport * as VTable from './vtable';\nimport * as plugins from './plugins';\nexport const version = \"1.25.1-alpha.1\";\n/**\n * @namespace VTableGantt\n */\nexport {\n TYPES,\n GanttConstructorOptions,\n Gantt,\n ColumnsDefine,\n ColumnDefine,\n LinkColumnDefine,\n ChartColumnDefine,\n ImageColumnDefine,\n SparklineColumnDefine,\n ProgressbarColumnDefine,\n TextColumnDefine,\n GroupColumnDefine,\n TextAlignType,\n TextBaselineType,\n tools,\n VRender,\n VTable,\n plugins\n};\n"]}
@@ -15128,9 +15128,10 @@
15128
15128
  }), context.highPerformanceRestore(), context.setTransformForCurrent();
15129
15129
  } else {
15130
15130
  const {
15131
- backgroundCornerRadius: backgroundCornerRadius
15131
+ backgroundCornerRadius: backgroundCornerRadius,
15132
+ backgroundOpacity = 1
15132
15133
  } = graphic.attribute;
15133
- context.highPerformanceSave(), context.setCommonStyle(graphic, graphic.attribute, x, y, graphicAttribute), context.fillStyle = background, backgroundCornerRadius ? (createRectPath(context, b.x1, b.y1, b.width(), b.height(), backgroundCornerRadius, !0), context.fill()) : context.fillRect(b.x1, b.y1, b.width(), b.height()), context.highPerformanceRestore();
15134
+ context.highPerformanceSave(), context.setCommonStyle(graphic, graphic.attribute, x, y, graphicAttribute), context.globalAlpha = backgroundOpacity, context.fillStyle = background, backgroundCornerRadius ? (createRectPath(context, b.x1, b.y1, b.width(), b.height(), backgroundCornerRadius, !0), context.fill()) : context.fillRect(b.x1, b.y1, b.width(), b.height()), context.highPerformanceRestore();
15134
15135
  }
15135
15136
  shouldReCalBounds && boundsAllocate.free(b), restore();
15136
15137
  }
@@ -31329,6 +31330,16 @@
31329
31330
  strokeBoundsBuffer: 0
31330
31331
  }
31331
31332
  };
31333
+ const LAYOUT_LEVEL = {
31334
+ background: 0,
31335
+ preview: 1,
31336
+ dragMask: 2,
31337
+ selectedBackground: 3,
31338
+ selectedPreview: 4,
31339
+ handler: 5,
31340
+ handlerText: 5,
31341
+ handlerMask: 999
31342
+ };
31332
31343
 
31333
31344
  const isTextOverflow = (componentBoundsLike, textBounds, layout, isHorizontal) => {
31334
31345
  if (!textBounds) return !1;
@@ -31459,12 +31470,14 @@
31459
31470
  x: position.x + start * width,
31460
31471
  y: position.y,
31461
31472
  width: (end - start) * width,
31462
- height: height
31473
+ height: height,
31474
+ zIndex: LAYOUT_LEVEL.dragMask
31463
31475
  }, dragMaskStyle), "rect") : this._dragMask = this._getContainer().createOrUpdateChild("dragMask", Object.assign({
31464
31476
  x: position.x,
31465
31477
  y: position.y + start * height,
31466
31478
  width: width,
31467
- height: (end - start) * height
31479
+ height: (end - start) * height,
31480
+ zIndex: LAYOUT_LEVEL.dragMask
31468
31481
  }, dragMaskStyle), "rect"), {
31469
31482
  start: start,
31470
31483
  end: end
@@ -31488,7 +31501,8 @@
31488
31501
  y: position.y,
31489
31502
  width: width,
31490
31503
  height: height,
31491
- cursor: brushSelect ? "crosshair" : "auto"
31504
+ cursor: brushSelect ? "crosshair" : "auto",
31505
+ zIndex: LAYOUT_LEVEL.background
31492
31506
  }, backgroundStyle), {
31493
31507
  pickable: !zoomLock && (null === (_a = backgroundStyle.pickable) || void 0 === _a || _a)
31494
31508
  }), "rect");
@@ -31521,7 +31535,8 @@
31521
31535
  x: position.x + start * width,
31522
31536
  y: position.y - middleHandlerBackgroundSize,
31523
31537
  width: (end - start) * width,
31524
- height: middleHandlerBackgroundSize
31538
+ height: middleHandlerBackgroundSize,
31539
+ zIndex: LAYOUT_LEVEL.handler
31525
31540
  }, null === (_d = middleHandlerStyle.background) || void 0 === _d ? void 0 : _d.style), {
31526
31541
  pickable: !zoomLock && (null === (_g = null === (_f = null === (_e = middleHandlerStyle.background) || void 0 === _e ? void 0 : _e.style) || void 0 === _f ? void 0 : _f.pickable) || void 0 === _g || _g)
31527
31542
  }), "rect"), this._middleHandlerSymbol = group.createOrUpdateChild("middleHandlerSymbol", Object.assign(Object.assign({
@@ -31529,24 +31544,29 @@
31529
31544
  y: position.y - middleHandlerBackgroundSize / 2,
31530
31545
  strokeBoundsBuffer: 0,
31531
31546
  angle: 0,
31532
- symbolType: null !== (_j = null === (_h = middleHandlerStyle.icon) || void 0 === _h ? void 0 : _h.symbolType) && void 0 !== _j ? _j : "square"
31547
+ symbolType: null !== (_j = null === (_h = middleHandlerStyle.icon) || void 0 === _h ? void 0 : _h.symbolType) && void 0 !== _j ? _j : "square",
31548
+ zIndex: LAYOUT_LEVEL.handler
31533
31549
  }, middleHandlerStyle.icon), {
31534
31550
  pickable: !zoomLock && (null === (_k = middleHandlerStyle.icon.pickable) || void 0 === _k || _k)
31535
31551
  }), "symbol");
31536
31552
  }
31537
- this._startHandler = group.createOrUpdateChild("startHandler", Object.assign(Object.assign(Object.assign({
31553
+ this._startHandler = group.createOrUpdateChild("startHandler", Object.assign(Object.assign(Object.assign(Object.assign({
31538
31554
  x: position.x + start * width,
31539
31555
  y: position.y + height / 2,
31540
31556
  size: height,
31541
31557
  symbolType: null !== (_l = startHandlerStyle.symbolType) && void 0 !== _l ? _l : "square"
31542
- }, DEFAULT_HANDLER_ATTR_MAP.horizontal), startHandlerStyle), {
31558
+ }, DEFAULT_HANDLER_ATTR_MAP.horizontal), {
31559
+ zIndex: LAYOUT_LEVEL.handler
31560
+ }), startHandlerStyle), {
31543
31561
  pickable: !zoomLock && (null === (_m = startHandlerStyle.pickable) || void 0 === _m || _m)
31544
- }), "symbol"), this._endHandler = group.createOrUpdateChild("endHandler", Object.assign(Object.assign(Object.assign({
31562
+ }), "symbol"), this._endHandler = group.createOrUpdateChild("endHandler", Object.assign(Object.assign(Object.assign(Object.assign({
31545
31563
  x: position.x + end * width,
31546
31564
  y: position.y + height / 2,
31547
31565
  size: height,
31548
31566
  symbolType: null !== (_o = endHandlerStyle.symbolType) && void 0 !== _o ? _o : "square"
31549
- }, DEFAULT_HANDLER_ATTR_MAP.horizontal), endHandlerStyle), {
31567
+ }, DEFAULT_HANDLER_ATTR_MAP.horizontal), {
31568
+ zIndex: LAYOUT_LEVEL.handler
31569
+ }), endHandlerStyle), {
31550
31570
  pickable: !zoomLock && (null === (_p = endHandlerStyle.pickable) || void 0 === _p || _p)
31551
31571
  }), "symbol");
31552
31572
  const startHandlerWidth = Math.max(this._startHandler.AABBBounds.width(), startHandlerMinSize),
@@ -31560,7 +31580,7 @@
31560
31580
  height: startHandlerHeight,
31561
31581
  fill: "white",
31562
31582
  fillOpacity: 0,
31563
- zIndex: 999
31583
+ zIndex: LAYOUT_LEVEL.handlerMask
31564
31584
  }, DEFAULT_HANDLER_ATTR_MAP.horizontal), {
31565
31585
  pickable: !zoomLock
31566
31586
  }), "rect"), this._endHandlerMask = group.createOrUpdateChild("endHandlerMask", Object.assign(Object.assign({
@@ -31570,7 +31590,7 @@
31570
31590
  height: endHandlerHeight,
31571
31591
  fill: "white",
31572
31592
  fillOpacity: 0,
31573
- zIndex: 999
31593
+ zIndex: LAYOUT_LEVEL.handlerMask
31574
31594
  }, DEFAULT_HANDLER_ATTR_MAP.horizontal), {
31575
31595
  pickable: !zoomLock
31576
31596
  }), "rect");
@@ -31581,7 +31601,8 @@
31581
31601
  x: "left" === orient ? position.x - middleHandlerBackgroundSize : position.x + width,
31582
31602
  y: position.y + start * height,
31583
31603
  width: middleHandlerBackgroundSize,
31584
- height: (end - start) * height
31604
+ height: (end - start) * height,
31605
+ zIndex: LAYOUT_LEVEL.handler
31585
31606
  }, null === (_r = middleHandlerStyle.background) || void 0 === _r ? void 0 : _r.style), {
31586
31607
  pickable: !zoomLock && (null === (_u = null === (_t = null === (_s = middleHandlerStyle.background) || void 0 === _s ? void 0 : _s.style) || void 0 === _t ? void 0 : _t.pickable) || void 0 === _u || _u)
31587
31608
  }), "rect"), this._middleHandlerSymbol = group.createOrUpdateChild("middleHandlerSymbol", Object.assign(Object.assign({
@@ -31589,23 +31610,27 @@
31589
31610
  y: position.y + (start + end) / 2 * height,
31590
31611
  angle: Math.PI / 180 * 90,
31591
31612
  symbolType: null !== (_w = null === (_v = middleHandlerStyle.icon) || void 0 === _v ? void 0 : _v.symbolType) && void 0 !== _w ? _w : "square",
31592
- strokeBoundsBuffer: 0
31613
+ strokeBoundsBuffer: 0,
31614
+ zIndex: LAYOUT_LEVEL.handler
31593
31615
  }, middleHandlerStyle.icon), {
31594
31616
  pickable: !zoomLock && (null === (_y = null === (_x = middleHandlerStyle.icon) || void 0 === _x ? void 0 : _x.pickable) || void 0 === _y || _y)
31595
31617
  }), "symbol");
31596
31618
  }
31597
- this._startHandler = group.createOrUpdateChild("startHandler", Object.assign(Object.assign(Object.assign({
31619
+ this._startHandler = group.createOrUpdateChild("startHandler", Object.assign(Object.assign(Object.assign(Object.assign({
31598
31620
  x: position.x + width / 2,
31599
31621
  y: position.y + start * height,
31600
31622
  size: width,
31601
31623
  symbolType: null !== (_z = startHandlerStyle.symbolType) && void 0 !== _z ? _z : "square"
31602
- }, DEFAULT_HANDLER_ATTR_MAP.vertical), startHandlerStyle), {
31624
+ }, DEFAULT_HANDLER_ATTR_MAP.vertical), {
31625
+ zIndex: LAYOUT_LEVEL.handler
31626
+ }), startHandlerStyle), {
31603
31627
  pickable: !zoomLock && (null === (_0 = startHandlerStyle.pickable) || void 0 === _0 || _0)
31604
31628
  }), "symbol"), this._endHandler = group.createOrUpdateChild("endHandler", Object.assign(Object.assign(Object.assign({
31605
31629
  x: position.x + width / 2,
31606
31630
  y: position.y + end * height,
31607
31631
  size: width,
31608
- symbolType: null !== (_1 = endHandlerStyle.symbolType) && void 0 !== _1 ? _1 : "square"
31632
+ symbolType: null !== (_1 = endHandlerStyle.symbolType) && void 0 !== _1 ? _1 : "square",
31633
+ zIndex: LAYOUT_LEVEL.handler
31609
31634
  }, DEFAULT_HANDLER_ATTR_MAP.vertical), endHandlerStyle), {
31610
31635
  pickable: !zoomLock && (null === (_2 = endHandlerStyle.pickable) || void 0 === _2 || _2)
31611
31636
  }), "symbol");
@@ -31620,7 +31645,7 @@
31620
31645
  height: endHandlerWidth,
31621
31646
  fill: "white",
31622
31647
  fillOpacity: 0,
31623
- zIndex: 999
31648
+ zIndex: LAYOUT_LEVEL.handlerMask
31624
31649
  }, DEFAULT_HANDLER_ATTR_MAP.vertical), {
31625
31650
  pickable: !zoomLock
31626
31651
  }), "rect"), this._endHandlerMask = group.createOrUpdateChild("endHandlerMask", Object.assign(Object.assign({
@@ -31630,7 +31655,7 @@
31630
31655
  height: endHandlerWidth,
31631
31656
  fill: "white",
31632
31657
  fillOpacity: 0,
31633
- zIndex: 999
31658
+ zIndex: LAYOUT_LEVEL.handlerMask
31634
31659
  }, DEFAULT_HANDLER_ATTR_MAP.vertical), {
31635
31660
  pickable: !zoomLock
31636
31661
  }), "rect");
@@ -31659,7 +31684,8 @@
31659
31684
  y: position.y,
31660
31685
  width: (end - start) * width,
31661
31686
  height: height,
31662
- cursor: brushSelect ? "crosshair" : "move"
31687
+ cursor: brushSelect ? "crosshair" : "move",
31688
+ zIndex: LAYOUT_LEVEL.selectedBackground
31663
31689
  }, selectedBackgroundStyle), {
31664
31690
  pickable: !zoomLock && (null === (_a = selectedBackgroundChartStyle.pickable) || void 0 === _a || _a)
31665
31691
  }), "rect") : this._selectedBackground = group.createOrUpdateChild("selectedBackground", Object.assign(Object.assign({
@@ -31667,14 +31693,16 @@
31667
31693
  y: position.y + start * height,
31668
31694
  width: width,
31669
31695
  height: (end - start) * height,
31670
- cursor: brushSelect ? "crosshair" : "move"
31696
+ cursor: brushSelect ? "crosshair" : "move",
31697
+ zIndex: LAYOUT_LEVEL.selectedBackground
31671
31698
  }, selectedBackgroundStyle), {
31672
31699
  pickable: !zoomLock && (null === (_b = selectedBackgroundStyle.pickable) || void 0 === _b || _b)
31673
31700
  }), "rect");
31674
31701
  }
31675
31702
  _setPreviewAttributes(type, group) {
31676
31703
  this._previewGroup || (this._previewGroup = group.createOrUpdateChild("previewGroup", {
31677
- pickable: !1
31704
+ pickable: !1,
31705
+ zIndex: LAYOUT_LEVEL.preview
31678
31706
  }, "group")), "line" === type ? this._previewLine = this._previewGroup.createOrUpdateChild("previewLine", {}, "line") : this._previewArea = this._previewGroup.createOrUpdateChild("previewArea", {
31679
31707
  curveType: "basis"
31680
31708
  }, "area");
@@ -31693,7 +31721,8 @@
31693
31721
  }
31694
31722
  _setSelectedPreviewClipAttributes(type, group) {
31695
31723
  this._selectedPreviewGroupClip || (this._selectedPreviewGroupClip = group.createOrUpdateChild("selectedPreviewGroupClip", {
31696
- pickable: !1
31724
+ pickable: !1,
31725
+ zIndex: LAYOUT_LEVEL.selectedPreview
31697
31726
  }, "group"), this._selectedPreviewGroup = this._selectedPreviewGroupClip.createOrUpdateChild("selectedPreviewGroup", {}, "group"));
31698
31727
  const {
31699
31728
  start: start,
@@ -31895,7 +31924,8 @@
31895
31924
  visible: this._showText,
31896
31925
  pickable: !1,
31897
31926
  childrenPickable: !1,
31898
- textStyle: startTextAlignStyle
31927
+ textStyle: startTextAlignStyle,
31928
+ zIndex: LAYOUT_LEVEL.handlerText
31899
31929
  }), "data-zoom-start-text"), this._endText = this._maybeAddLabel(this._getContainer(), merge({}, restEndTextStyle, {
31900
31930
  text: endTextValue,
31901
31931
  x: endTextPosition.x,
@@ -31903,7 +31933,8 @@
31903
31933
  visible: this._showText,
31904
31934
  pickable: !1,
31905
31935
  childrenPickable: !1,
31906
- textStyle: endTextAlignStyle
31936
+ textStyle: endTextAlignStyle,
31937
+ zIndex: LAYOUT_LEVEL.handlerText
31907
31938
  }), "data-zoom-end-text");
31908
31939
  }
31909
31940
  _maybeAddLabel(container, attributes, name) {
@@ -33747,7 +33778,31 @@
33747
33778
  return graphicCreator.symbol(style);
33748
33779
  }
33749
33780
  _renderHandlerText(value, position) {
33750
- var _a, _b, _c;
33781
+ return graphicCreator.text(this._getHandlerTextAttributes(value, position));
33782
+ }
33783
+ _getHandlerPosition(isStart) {
33784
+ return this.attribute.range && isStart ? "start" : "end";
33785
+ }
33786
+ _getHandlerTextStyle(value, position) {
33787
+ const {
33788
+ align: align,
33789
+ handlerSize = 14,
33790
+ handlerText = {},
33791
+ railHeight: railHeight,
33792
+ railWidth: railWidth,
33793
+ slidable: slidable
33794
+ } = this.attribute;
33795
+ return isFunction$3(handlerText.style) ? handlerText.style(value, position, {
33796
+ layout: this.attribute.layout,
33797
+ align: align,
33798
+ railWidth: railWidth,
33799
+ railHeight: railHeight,
33800
+ handlerSize: handlerSize,
33801
+ slidable: slidable
33802
+ }) : handlerText.style;
33803
+ }
33804
+ _getHandlerTextAttributes(value, position) {
33805
+ var _a, _b;
33751
33806
  const {
33752
33807
  align: align,
33753
33808
  handlerSize = 14,
@@ -33759,13 +33814,13 @@
33759
33814
  isHorizontal = this._isHorizontal,
33760
33815
  pos = this.calculatePosByValue(value, position),
33761
33816
  textSpace = null !== (_a = handlerText.space) && void 0 !== _a ? _a : 4,
33817
+ handlerTextStyle = this._getHandlerTextStyle(value, position),
33762
33818
  textStyle = {
33763
33819
  text: handlerText.formatter ? handlerText.formatter(value) : value.toFixed(null !== (_b = handlerText.precision) && void 0 !== _b ? _b : 0),
33764
- lineHeight: null === (_c = handlerText.style) || void 0 === _c ? void 0 : _c.lineHeight,
33820
+ lineHeight: null == handlerTextStyle ? void 0 : handlerTextStyle.lineHeight,
33765
33821
  cursor: !1 === slidable ? "default" : getDefaultCursor(isHorizontal)
33766
33822
  };
33767
- isHorizontal ? "top" === align ? (textStyle.textBaseline = "bottom", textStyle.textAlign = "center", textStyle.x = pos, textStyle.y = (railHeight - handlerSize) / 2 - textSpace) : (textStyle.textBaseline = "top", textStyle.textAlign = "center", textStyle.x = pos, textStyle.y = (railHeight + handlerSize) / 2 + textSpace) : "left" === align ? (textStyle.textBaseline = "middle", textStyle.textAlign = "end", textStyle.x = (railWidth - handlerSize) / 2 - textSpace, textStyle.y = pos) : (textStyle.textBaseline = "middle", textStyle.textAlign = "start", textStyle.x = (railWidth + handlerSize) / 2 + textSpace, textStyle.y = pos);
33768
- return graphicCreator.text(Object.assign(Object.assign({}, textStyle), handlerText.style));
33823
+ return isHorizontal ? "top" === align ? (textStyle.textBaseline = "bottom", textStyle.textAlign = "center", textStyle.x = pos, textStyle.y = (railHeight - handlerSize) / 2 - textSpace) : (textStyle.textBaseline = "top", textStyle.textAlign = "center", textStyle.x = pos, textStyle.y = (railHeight + handlerSize) / 2 + textSpace) : "left" === align ? (textStyle.textBaseline = "middle", textStyle.textAlign = "end", textStyle.x = (railWidth - handlerSize) / 2 - textSpace, textStyle.y = pos) : (textStyle.textBaseline = "middle", textStyle.textAlign = "start", textStyle.x = (railWidth + handlerSize) / 2 + textSpace, textStyle.y = pos), Object.assign(Object.assign({}, textStyle), handlerTextStyle);
33769
33824
  }
33770
33825
  _renderTooltip() {
33771
33826
  var _a;
@@ -33893,31 +33948,19 @@
33893
33948
  }
33894
33949
  }
33895
33950
  _updateHandler(handler, position, value) {
33896
- var _a;
33897
33951
  const isHorizontal = this._isHorizontal;
33898
33952
  handler.setAttribute(isHorizontal ? "x" : "y", position);
33899
33953
  const updateHandlerText = handler.name === SLIDER_ELEMENT_NAME.startHandler ? this._startHandlerText : this._endHandlerText;
33900
33954
  if (updateHandlerText) {
33901
- const {
33902
- handlerText = {}
33903
- } = this.attribute;
33904
- updateHandlerText.setAttributes({
33905
- text: handlerText.formatter ? handlerText.formatter(value) : value.toFixed(null !== (_a = handlerText.precision) && void 0 !== _a ? _a : 0),
33906
- [isHorizontal ? "x" : "y"]: position
33907
- });
33955
+ const handlerPosition = this._getHandlerPosition(handler.name === SLIDER_ELEMENT_NAME.startHandler);
33956
+ updateHandlerText.setAttributes(this._getHandlerTextAttributes(value, handlerPosition));
33908
33957
  }
33909
33958
  handler.name === SLIDER_ELEMENT_NAME.startHandler ? (this._currentValue.startValue = value, this._currentValue.startPos = position) : (this._currentValue.endValue = value, this._currentValue.endPos = position);
33910
33959
  }
33911
33960
  _updateHandlerText(handlerText, position, value) {
33912
- var _a;
33913
33961
  const isHorizontal = this._isHorizontal,
33914
- {
33915
- handlerText: handlerTextAttr = {}
33916
- } = this.attribute;
33917
- handlerText.setAttributes({
33918
- [isHorizontal ? "x" : "y"]: position,
33919
- text: handlerTextAttr.formatter ? handlerTextAttr.formatter(value) : value.toFixed(null !== (_a = handlerTextAttr.precision) && void 0 !== _a ? _a : 0)
33920
- });
33962
+ handlerPosition = this._getHandlerPosition(handlerText.name === SLIDER_ELEMENT_NAME.startHandlerText);
33963
+ handlerText.setAttributes(this._getHandlerTextAttributes(value, handlerPosition));
33921
33964
  const updateHandler = handlerText.name === SLIDER_ELEMENT_NAME.startHandlerText ? this._startHandler : this._endHandler;
33922
33965
  updateHandler && updateHandler.setAttributes({
33923
33966
  [isHorizontal ? "x" : "y"]: position
@@ -60904,7 +60947,17 @@
60904
60947
  }
60905
60948
  constructor(container, options = {}) {
60906
60949
  var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z;
60907
- if (super(), this.showFrozenIcon = !0, this._scrollToRowCorrectTimer = null, this._tableBorderWidth_left = 0, this._tableBorderWidth_right = 0, this._tableBorderWidth_top = 0, this._tableBorderWidth_bottom = 0, this.version = "1.25.0", this.id = `VTable${Date.now()}`, this.isReleased = !1, this._chartEventMap = {}, this.throttleInvalidate = throttle2(this.render.bind(this), 200), "node" === Env.mode ? (options = container, container = null) : container instanceof HTMLElement || (options = container, container = container.container ? container.container : null), !container && "node" !== options.mode && !options.canvas) throw new Error("vtable's container is undefined");
60950
+ if (super(), this.showFrozenIcon = !0, this._scrollToRowCorrectTimer = null, this._tableBorderWidth_left = 0, this._tableBorderWidth_right = 0, this._tableBorderWidth_top = 0, this._tableBorderWidth_bottom = 0, this.version = "1.25.1-alpha.1", this.id = `VTable${Date.now()}`, this.isReleased = !1, this._chartEventMap = {}, this.throttleInvalidate = throttle2(this.render.bind(this), 200), "undefined" != typeof window) {
60951
+ const g = window;
60952
+ g[this.id] = this;
60953
+ const registry = g.__vtable__ || (g.__vtable__ = {
60954
+ byId: Object.create(null),
60955
+ list: [],
60956
+ last: null
60957
+ });
60958
+ registry.byId[this.id] = this, registry.list.push(this), registry.last = this, g.__vtable_last_id__ = this.id;
60959
+ }
60960
+ if ("node" === Env.mode ? (options = container, container = null) : container instanceof HTMLElement || (options = container, container = container.container ? container.container : null), !container && "node" !== options.mode && !options.canvas) throw new Error("vtable's container is undefined");
60908
60961
  this.pluginManager = new PluginManager$1(this, options), this.fireListeners(TABLE_EVENT_TYPE.BEFORE_INIT, {
60909
60962
  options: options,
60910
60963
  container: container
@@ -60981,7 +61034,7 @@
60981
61034
  bottom: 0
60982
61035
  }, padding && ("number" == typeof padding ? (this.padding.top = padding, this.padding.left = padding, this.padding.bottom = padding, this.padding.right = padding) : (padding.top && (this.padding.top = padding.top), padding.bottom && (this.padding.bottom = padding.bottom), padding.left && (this.padding.left = padding.left), padding.right && (this.padding.right = padding.right))), (isValid$1(canvasHeight) || isValid$1(canvasWidth)) && (this.canvasSizeSeted = !0), this.tableNoFrameWidth = 0, this.tableNoFrameHeight = 0, this.contentOffsetX = null != translateX ? translateX : 0, this.contentOffsetY = null != translateY ? translateY : 0, this.canvasWidth = isNumber$2(canvasWidth) ? canvasWidth : void 0, this.canvasHeight = isNumber$2(canvasHeight) ? canvasHeight : void 0, this.columnWidthComputeMode = null !== (_d = options.columnWidthComputeMode) && void 0 !== _d ? _d : "normal";
60983
61036
  const internalProps = this.internalProps = {};
60984
- void 0 !== showFrozenIcon && (this.showFrozenIcon = showFrozenIcon), "number" == typeof allowFrozenColCount && allowFrozenColCount <= 0 && (this.showFrozenIcon = !1), this.options.canvas ? ("node" !== Env.mode && (internalProps.element = this.options.canvas.parentElement, internalProps.element.style.position = "relative"), internalProps.focusControl = new FocusInput(this, internalProps.element), internalProps.canvas = this.options.canvas, internalProps.context = internalProps.canvas.getContext("2d")) : "node" !== Env.mode && (internalProps.element = createRootElement$1(this.padding), internalProps.focusControl = new FocusInput(this, internalProps.element), internalProps.canvas = document.createElement("canvas"), internalProps.element.appendChild(internalProps.canvas), internalProps.context = internalProps.canvas.getContext("2d"), (null === (_e = options.customConfig) || void 0 === _e ? void 0 : _e.createReactContainer) && createReactContainer(this)), internalProps.handler = new EventHandler$1(), isNumber$2(this.options.resizeTime) && (internalProps.handler.resizeTime = this.options.resizeTime), internalProps.pixelRatio = pixelRatio, internalProps.frozenColCount = frozenColCount, internalProps.frozenRowCount = frozenRowCount, internalProps.unfreezeAllOnExceedsMaxWidth = null == unfreezeAllOnExceedsMaxWidth || unfreezeAllOnExceedsMaxWidth, internalProps.defaultRowHeight = defaultRowHeight, internalProps.defaultHeaderRowHeight = null != defaultHeaderRowHeight ? defaultHeaderRowHeight : defaultRowHeight, internalProps.defaultColWidth = defaultColWidth, internalProps.defaultHeaderColWidth = null != defaultHeaderColWidth ? defaultHeaderColWidth : defaultColWidth, internalProps.keyboardOptions = keyboardOptions, internalProps.eventOptions = eventOptions, internalProps.rowSeriesNumber = rowSeriesNumber, internalProps.enableCheckboxCascade = null === (_f = null != enableCheckboxCascade ? enableCheckboxCascade : null == rowSeriesNumber ? void 0 : rowSeriesNumber.enableTreeCheckbox) || void 0 === _f || _f, internalProps.enableHeaderCheckboxCascade = enableCheckboxCascade || null == enableHeaderCheckboxCascade || enableHeaderCheckboxCascade, internalProps.columnResizeMode = null !== (_g = null == resize ? void 0 : resize.columnResizeMode) && void 0 !== _g ? _g : columnResizeMode, internalProps.canResizeColumn = null == resize ? void 0 : resize.canResizeColumn, internalProps.rowResizeMode = null !== (_h = null == resize ? void 0 : resize.rowResizeMode) && void 0 !== _h ? _h : rowResizeMode, internalProps.dragHeaderMode = null !== (_k = null !== (_j = null == dragOrder ? void 0 : dragOrder.dragHeaderMode) && void 0 !== _j ? _j : dragHeaderMode) && void 0 !== _k ? _k : "none", internalProps.renderChartAsync = renderChartAsync, setBatchRenderChartCount(renderChartAsyncBatchCount), internalProps.overscrollBehavior = null != overscrollBehavior ? overscrollBehavior : "auto", internalProps.groupBy = null !== (_l = null == groupConfig ? void 0 : groupConfig.groupBy) && void 0 !== _l ? _l : groupBy, internalProps.groupTitleCheckbox = null !== (_m = null == groupConfig ? void 0 : groupConfig.titleCheckbox) && void 0 !== _m ? _m : !!(null == rowSeriesNumber ? void 0 : rowSeriesNumber.enableTreeCheckbox), internalProps.groupTitleFieldFormat = null !== (_o = null == groupConfig ? void 0 : groupConfig.titleFieldFormat) && void 0 !== _o ? _o : groupTitleFieldFormat, internalProps.groupTitleCustomLayout = null !== (_p = null == groupConfig ? void 0 : groupConfig.titleCustomLayout) && void 0 !== _p ? _p : groupTitleCustomLayout, internalProps.enableTreeStickCell = null !== (_q = null == groupConfig ? void 0 : groupConfig.enableTreeStickCell) && void 0 !== _q ? _q : enableTreeStickCell, internalProps._rowHeightsMap = new NumberRangeMap(this), internalProps._rowRangeHeightsMap = new Map(), internalProps._colRangeWidthsMap = new Map(), internalProps._widthResizedColMap = new Set(), internalProps._heightResizedRowMap = new Set(), this.colWidthsMap = new NumberMap(), this.colContentWidthsMap = new NumberMap(), this.colWidthsLimit = {};
61037
+ void 0 !== showFrozenIcon && (this.showFrozenIcon = showFrozenIcon), "number" == typeof allowFrozenColCount && allowFrozenColCount <= 0 && (this.showFrozenIcon = !1), this.options.canvas ? ("node" !== Env.mode && (internalProps.element = this.options.canvas.parentElement, internalProps.element.style.position = "relative"), internalProps.focusControl = new FocusInput(this, internalProps.element), internalProps.canvas = this.options.canvas, internalProps.context = internalProps.canvas.getContext("2d"), internalProps.canvas.__vtable__ = this, internalProps.canvas.__vtable_id__ = this.id, internalProps.element && (internalProps.element.__vtable__ = this, internalProps.element.__vtable_id__ = this.id)) : "node" !== Env.mode && (internalProps.element = createRootElement$1(this.padding), internalProps.focusControl = new FocusInput(this, internalProps.element), internalProps.canvas = document.createElement("canvas"), internalProps.element.appendChild(internalProps.canvas), internalProps.context = internalProps.canvas.getContext("2d"), internalProps.canvas.__vtable__ = this, internalProps.canvas.__vtable_id__ = this.id, internalProps.element.__vtable__ = this, internalProps.element.__vtable_id__ = this.id, (null === (_e = options.customConfig) || void 0 === _e ? void 0 : _e.createReactContainer) && createReactContainer(this)), internalProps.handler = new EventHandler$1(), isNumber$2(this.options.resizeTime) && (internalProps.handler.resizeTime = this.options.resizeTime), internalProps.pixelRatio = pixelRatio, internalProps.frozenColCount = frozenColCount, internalProps.frozenRowCount = frozenRowCount, internalProps.unfreezeAllOnExceedsMaxWidth = null == unfreezeAllOnExceedsMaxWidth || unfreezeAllOnExceedsMaxWidth, internalProps.defaultRowHeight = defaultRowHeight, internalProps.defaultHeaderRowHeight = null != defaultHeaderRowHeight ? defaultHeaderRowHeight : defaultRowHeight, internalProps.defaultColWidth = defaultColWidth, internalProps.defaultHeaderColWidth = null != defaultHeaderColWidth ? defaultHeaderColWidth : defaultColWidth, internalProps.keyboardOptions = keyboardOptions, internalProps.eventOptions = eventOptions, internalProps.rowSeriesNumber = rowSeriesNumber, internalProps.enableCheckboxCascade = null === (_f = null != enableCheckboxCascade ? enableCheckboxCascade : null == rowSeriesNumber ? void 0 : rowSeriesNumber.enableTreeCheckbox) || void 0 === _f || _f, internalProps.enableHeaderCheckboxCascade = enableCheckboxCascade || null == enableHeaderCheckboxCascade || enableHeaderCheckboxCascade, internalProps.columnResizeMode = null !== (_g = null == resize ? void 0 : resize.columnResizeMode) && void 0 !== _g ? _g : columnResizeMode, internalProps.canResizeColumn = null == resize ? void 0 : resize.canResizeColumn, internalProps.rowResizeMode = null !== (_h = null == resize ? void 0 : resize.rowResizeMode) && void 0 !== _h ? _h : rowResizeMode, internalProps.dragHeaderMode = null !== (_k = null !== (_j = null == dragOrder ? void 0 : dragOrder.dragHeaderMode) && void 0 !== _j ? _j : dragHeaderMode) && void 0 !== _k ? _k : "none", internalProps.renderChartAsync = renderChartAsync, setBatchRenderChartCount(renderChartAsyncBatchCount), internalProps.overscrollBehavior = null != overscrollBehavior ? overscrollBehavior : "auto", internalProps.groupBy = null !== (_l = null == groupConfig ? void 0 : groupConfig.groupBy) && void 0 !== _l ? _l : groupBy, internalProps.groupTitleCheckbox = null !== (_m = null == groupConfig ? void 0 : groupConfig.titleCheckbox) && void 0 !== _m ? _m : !!(null == rowSeriesNumber ? void 0 : rowSeriesNumber.enableTreeCheckbox), internalProps.groupTitleFieldFormat = null !== (_o = null == groupConfig ? void 0 : groupConfig.titleFieldFormat) && void 0 !== _o ? _o : groupTitleFieldFormat, internalProps.groupTitleCustomLayout = null !== (_p = null == groupConfig ? void 0 : groupConfig.titleCustomLayout) && void 0 !== _p ? _p : groupTitleCustomLayout, internalProps.enableTreeStickCell = null !== (_q = null == groupConfig ? void 0 : groupConfig.enableTreeStickCell) && void 0 !== _q ? _q : enableTreeStickCell, internalProps._rowHeightsMap = new NumberRangeMap(this), internalProps._rowRangeHeightsMap = new Map(), internalProps._colRangeWidthsMap = new Map(), internalProps._widthResizedColMap = new Set(), internalProps._heightResizedRowMap = new Set(), this.colWidthsMap = new NumberMap(), this.colContentWidthsMap = new NumberMap(), this.colWidthsLimit = {};
60985
61038
  const that = this;
60986
61039
  if (internalProps.calcWidthContext = {
60987
61040
  _: internalProps,
@@ -61858,18 +61911,30 @@
61858
61911
  this._scrollToRowCorrectTimer && (clearTimeout(this._scrollToRowCorrectTimer), this._scrollToRowCorrectTimer = null);
61859
61912
  }
61860
61913
  release() {
61861
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1;
61862
- null === (_c = null === (_b = null === (_a = this.scenegraph) || void 0 === _a ? void 0 : _a.component) || void 0 === _b ? void 0 : _b.vScrollBar) || void 0 === _c || _c.release(), null === (_f = null === (_e = null === (_d = this.scenegraph) || void 0 === _d ? void 0 : _d.component) || void 0 === _e ? void 0 : _e.hScrollBar) || void 0 === _f || _f.release(), this.animationManager.clear(), this.animationManager.ticker.release(), null === (_j = null === (_h = null === (_g = this.scenegraph) || void 0 === _g ? void 0 : _g.stage) || void 0 === _h ? void 0 : _h.ticker) || void 0 === _j || _j.release();
61863
- const internalProps = this.internalProps;
61914
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4;
61915
+ if ("undefined" != typeof window) {
61916
+ const g = window;
61917
+ (null == g ? void 0 : g[this.id]) === this ? delete g[this.id] : (null == g ? void 0 : g[this.id]) && (g[this.id] = null);
61918
+ const registry = null == g ? void 0 : g.__vtable__;
61919
+ (null === (_a = null == registry ? void 0 : registry.byId) || void 0 === _a ? void 0 : _a[this.id]) === this && delete registry.byId[this.id];
61920
+ const list = null == registry ? void 0 : registry.list;
61921
+ if (Array.isArray(list) && list.length) for (let i = list.length - 1; i >= 0; i--) list[i] === this && list.splice(i, 1);
61922
+ (null == registry ? void 0 : registry.last) === this && (registry.last = Array.isArray(list) && list.length ? list[list.length - 1] : null), (null == g ? void 0 : g.__vtable_last_id__) === this.id && (g.__vtable_last_id__ = null !== (_c = null === (_b = null == registry ? void 0 : registry.last) || void 0 === _b ? void 0 : _b.id) && void 0 !== _c ? _c : null);
61923
+ }
61864
61924
  if (this.isReleased) return;
61865
- this.clearCorrectTimer(), null === (_l = null === (_k = internalProps.tooltipHandler) || void 0 === _k ? void 0 : _k.release) || void 0 === _l || _l.call(_k), null === (_o = null === (_m = internalProps.menuHandler) || void 0 === _m ? void 0 : _m.release) || void 0 === _o || _o.call(_m), null === (_p = super.release) || void 0 === _p || _p.call(this), this.pluginManager.release(), null === (_r = null === (_q = internalProps.handler) || void 0 === _q ? void 0 : _q.release) || void 0 === _r || _r.call(_q), this.eventManager.release(), null === (_t = null === (_s = internalProps.focusControl) || void 0 === _s ? void 0 : _s.release) || void 0 === _t || _t.call(_s), null === (_u = internalProps.legends) || void 0 === _u || _u.forEach(legend => {
61925
+ null === (_f = null === (_e = null === (_d = this.scenegraph) || void 0 === _d ? void 0 : _d.component) || void 0 === _e ? void 0 : _e.vScrollBar) || void 0 === _f || _f.release(), null === (_j = null === (_h = null === (_g = this.scenegraph) || void 0 === _g ? void 0 : _g.component) || void 0 === _h ? void 0 : _h.hScrollBar) || void 0 === _j || _j.release(), this.animationManager.clear(), this.animationManager.ticker.release(), null === (_m = null === (_l = null === (_k = this.scenegraph) || void 0 === _k ? void 0 : _k.stage) || void 0 === _l ? void 0 : _l.ticker) || void 0 === _m || _m.release();
61926
+ const internalProps = this.internalProps,
61927
+ canvas = null == internalProps ? void 0 : internalProps.canvas;
61928
+ (null == canvas ? void 0 : canvas.__vtable__) === this && (delete canvas.__vtable__, delete canvas.__vtable_id__);
61929
+ const element = null == internalProps ? void 0 : internalProps.element;
61930
+ (null == element ? void 0 : element.__vtable__) === this && (delete element.__vtable__, delete element.__vtable_id__), this.clearCorrectTimer(), null === (_p = null === (_o = internalProps.tooltipHandler) || void 0 === _o ? void 0 : _o.release) || void 0 === _p || _p.call(_o), null === (_r = null === (_q = internalProps.menuHandler) || void 0 === _q ? void 0 : _q.release) || void 0 === _r || _r.call(_q), null === (_s = super.release) || void 0 === _s || _s.call(this), this.pluginManager.release(), null === (_u = null === (_t = internalProps.handler) || void 0 === _t ? void 0 : _t.release) || void 0 === _u || _u.call(_t), this.eventManager.release(), null === (_w = null === (_v = internalProps.focusControl) || void 0 === _v ? void 0 : _v.release) || void 0 === _w || _w.call(_v), null === (_x = internalProps.legends) || void 0 === _x || _x.forEach(legend => {
61866
61931
  null == legend || legend.release();
61867
- }), null === (_v = internalProps.title) || void 0 === _v || _v.release(), internalProps.title = null, null === (_w = internalProps.emptyTip) || void 0 === _w || _w.release(), internalProps.emptyTip = null, internalProps.layoutMap.release(), internalProps.releaseList && (internalProps.releaseList.forEach(releaseObj => {
61932
+ }), null === (_y = internalProps.title) || void 0 === _y || _y.release(), internalProps.title = null, null === (_z = internalProps.emptyTip) || void 0 === _z || _z.release(), internalProps.emptyTip = null, internalProps.layoutMap.release(), internalProps.releaseList && (internalProps.releaseList.forEach(releaseObj => {
61868
61933
  var _a;
61869
61934
  return null === (_a = null == releaseObj ? void 0 : releaseObj.release) || void 0 === _a ? void 0 : _a.call(releaseObj);
61870
61935
  }), internalProps.releaseList = null), this.scenegraph.stage.release(), this.scenegraph.proxy.release();
61871
- const parentElement = null === (_x = internalProps.element) || void 0 === _x ? void 0 : _x.parentElement;
61872
- parentElement && !this.options.canvas && parentElement.removeChild(internalProps.element), null === (_0 = null === (_z = null === (_y = this.editorManager) || void 0 === _y ? void 0 : _y.editingEditor) || void 0 === _z ? void 0 : _z.onEnd) || void 0 === _0 || _0.call(_z), this.isReleased = !0, this.scenegraph = null, this.internalProps = null, null === (_1 = this.reactCustomLayout) || void 0 === _1 || _1.clearCache(), clearChartRenderQueue();
61936
+ const parentElement = null === (_0 = internalProps.element) || void 0 === _0 ? void 0 : _0.parentElement;
61937
+ parentElement && !this.options.canvas && parentElement.removeChild(internalProps.element), null === (_3 = null === (_2 = null === (_1 = this.editorManager) || void 0 === _1 ? void 0 : _1.editingEditor) || void 0 === _2 ? void 0 : _2.onEnd) || void 0 === _3 || _3.call(_2), this.isReleased = !0, this.scenegraph = null, this.internalProps = null, null === (_4 = this.reactCustomLayout) || void 0 === _4 || _4.clearCache(), clearChartRenderQueue();
61873
61938
  }
61874
61939
  fireListeners(type, event) {
61875
61940
  return super.fireListeners(type, event);
@@ -72013,7 +72078,7 @@
72013
72078
  }
72014
72079
  }
72015
72080
 
72016
- /*! *****************************************************************************
72081
+ /******************************************************************************
72017
72082
  Copyright (c) Microsoft Corporation.
72018
72083
 
72019
72084
  Permission to use, copy, modify, and/or distribute this software for any
@@ -72034,6 +72099,10 @@
72034
72099
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
72035
72100
  return c > 3 && r && Object.defineProperty(target, key, r), r;
72036
72101
  }
72102
+ typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
72103
+ var e = new Error(message);
72104
+ return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
72105
+ };
72037
72106
 
72038
72107
  let DateHeaderGroupBeforeRenderContribution = class DateHeaderGroupBeforeRenderContribution {
72039
72108
  time = BaseRenderContributionTime.beforeFillStroke;
@@ -78369,7 +78438,7 @@
78369
78438
  PluginManager: PluginManager
78370
78439
  });
78371
78440
 
78372
- const version = "1.25.0";
78441
+ const version = "1.25.1-alpha.1";
78373
78442
 
78374
78443
  exports.Gantt = Gantt;
78375
78444
  exports.TYPES = index$4;