@hpcc-js/timeline 2.52.0 → 2.53.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.
- package/dist/index.es6.js +20 -2
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +20 -2
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +4 -4
- package/src/ReactAxisGantt.ts +26 -18
- package/src/ReactAxisGanttSeries.ts +8 -0
- package/src/ReactGantt.ts +91 -83
- package/src/__package__.ts +2 -2
- package/types/ReactAxisGantt.d.ts +2 -0
- package/types/ReactAxisGantt.d.ts.map +1 -1
- package/types/ReactAxisGanttSeries.d.ts +2 -0
- package/types/ReactAxisGanttSeries.d.ts.map +1 -1
- package/types/ReactGantt.d.ts +2 -0
- package/types/ReactGantt.d.ts.map +1 -1
- package/types/__package__.d.ts +2 -2
- package/types-3.4/ReactAxisGantt.d.ts +2 -0
- package/types-3.4/ReactAxisGanttSeries.d.ts +2 -0
- package/types-3.4/ReactGantt.d.ts +2 -0
- package/types-3.4/__package__.d.ts +2 -2
package/dist/index.js
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
})(this, (function (exports, api, chart, common, html, react, layout) { 'use strict';
|
|
6
6
|
|
|
7
7
|
var PKG_NAME = "@hpcc-js/timeline";
|
|
8
|
-
var PKG_VERSION = "2.
|
|
9
|
-
var BUILD_VERSION = "2.106.
|
|
8
|
+
var PKG_VERSION = "2.53.0";
|
|
9
|
+
var BUILD_VERSION = "2.106.3";
|
|
10
10
|
|
|
11
11
|
/******************************************************************************
|
|
12
12
|
Copyright (c) Microsoft Corporation.
|
|
@@ -606,6 +606,12 @@
|
|
|
606
606
|
.followCursor(true);
|
|
607
607
|
return _this;
|
|
608
608
|
}
|
|
609
|
+
ReactGantt.prototype.selection = function (_) {
|
|
610
|
+
if (!arguments.length)
|
|
611
|
+
return this._selection.get();
|
|
612
|
+
this._selection.set(_);
|
|
613
|
+
return this;
|
|
614
|
+
};
|
|
609
615
|
ReactGantt.prototype.rangeRenderer = function (_) {
|
|
610
616
|
if (!arguments.length)
|
|
611
617
|
return this._rangeRenderer;
|
|
@@ -1120,6 +1126,12 @@
|
|
|
1120
1126
|
};
|
|
1121
1127
|
return _this;
|
|
1122
1128
|
}
|
|
1129
|
+
ReactAxisGantt.prototype.selection = function (_) {
|
|
1130
|
+
if (!arguments.length)
|
|
1131
|
+
return this._gantt.selection();
|
|
1132
|
+
this._gantt.selection(_);
|
|
1133
|
+
return this;
|
|
1134
|
+
};
|
|
1123
1135
|
ReactAxisGantt.prototype.resizeWrappers = function () {
|
|
1124
1136
|
var w = this.width();
|
|
1125
1137
|
var h = this.height();
|
|
@@ -1291,6 +1303,12 @@
|
|
|
1291
1303
|
_this.centerOverflowY_default("auto");
|
|
1292
1304
|
return _this;
|
|
1293
1305
|
}
|
|
1306
|
+
ReactAxisGanttSeries.prototype.selection = function (_) {
|
|
1307
|
+
if (!arguments.length)
|
|
1308
|
+
return this._gantt.selection();
|
|
1309
|
+
this._gantt.selection(_);
|
|
1310
|
+
return this;
|
|
1311
|
+
};
|
|
1294
1312
|
ReactAxisGanttSeries.prototype.rangeRenderer = function (_) {
|
|
1295
1313
|
var ret = this._gantt.rangeRenderer.apply(this._gantt, arguments);
|
|
1296
1314
|
if (!arguments.length)
|