@progress/kendo-charts 1.23.0-dev.202201111041 → 1.23.0-dev.202201120958
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/cdn/js/kendo-charts.js +1 -1
- package/dist/cdn/main.js +1 -1
- package/dist/es/map/map.js +1 -2
- package/dist/es/map/scroller/draggable.js +2 -2
- package/dist/es/map/utils.js +0 -9
- package/dist/es2015/map/map.js +1 -2
- package/dist/es2015/map/scroller/draggable.js +2 -2
- package/dist/es2015/map/utils.js +0 -9
- package/dist/npm/main.js +3 -13
- package/dist/systemjs/kendo-charts.js +1 -1
- package/package.json +1 -1
package/dist/es/map/map.js
CHANGED
|
@@ -10,6 +10,7 @@ import {
|
|
|
10
10
|
mousewheelDelta,
|
|
11
11
|
limitValue,
|
|
12
12
|
deepExtend,
|
|
13
|
+
elementOffset,
|
|
13
14
|
isArray
|
|
14
15
|
} from '../common';
|
|
15
16
|
|
|
@@ -61,7 +62,6 @@ import {
|
|
|
61
62
|
now,
|
|
62
63
|
on,
|
|
63
64
|
off,
|
|
64
|
-
elementOffset,
|
|
65
65
|
getSupportedFeatures,
|
|
66
66
|
convertToHtml
|
|
67
67
|
} from './utils';
|
|
@@ -816,7 +816,6 @@ var Map = (function (Observable) {
|
|
|
816
816
|
|
|
817
817
|
Map.prototype._mousewheel = function _mousewheel (e) {
|
|
818
818
|
e.preventDefault();
|
|
819
|
-
// let delta = dataviz.mwDelta(e) > 0 ? -1 : 1;
|
|
820
819
|
var delta = mousewheelDelta(e) > 0 ? -1 : 1;
|
|
821
820
|
var options = this.options;
|
|
822
821
|
var fromZoom = this.zoom();
|
package/dist/es/map/utils.js
CHANGED
|
@@ -445,15 +445,6 @@ export var now = function () {
|
|
|
445
445
|
return Number(new Date());
|
|
446
446
|
};
|
|
447
447
|
|
|
448
|
-
export var elementOffset = function (element) {
|
|
449
|
-
var offset = {
|
|
450
|
-
left: element.offsetLeft,
|
|
451
|
-
top: element.offsetTop
|
|
452
|
-
};
|
|
453
|
-
|
|
454
|
-
return offset;
|
|
455
|
-
};
|
|
456
|
-
|
|
457
448
|
export var noop = function () {};
|
|
458
449
|
|
|
459
450
|
/* eslint-enable arrow-body-style */
|
package/dist/es2015/map/map.js
CHANGED
|
@@ -10,6 +10,7 @@ import {
|
|
|
10
10
|
mousewheelDelta,
|
|
11
11
|
limitValue,
|
|
12
12
|
deepExtend,
|
|
13
|
+
elementOffset,
|
|
13
14
|
isArray
|
|
14
15
|
} from '../common';
|
|
15
16
|
|
|
@@ -61,7 +62,6 @@ import {
|
|
|
61
62
|
now,
|
|
62
63
|
on,
|
|
63
64
|
off,
|
|
64
|
-
elementOffset,
|
|
65
65
|
getSupportedFeatures,
|
|
66
66
|
convertToHtml
|
|
67
67
|
} from './utils';
|
|
@@ -794,7 +794,6 @@ class Map extends Observable {
|
|
|
794
794
|
|
|
795
795
|
_mousewheel(e) {
|
|
796
796
|
e.preventDefault();
|
|
797
|
-
// let delta = dataviz.mwDelta(e) > 0 ? -1 : 1;
|
|
798
797
|
let delta = mousewheelDelta(e) > 0 ? -1 : 1;
|
|
799
798
|
let options = this.options;
|
|
800
799
|
let fromZoom = this.zoom();
|
package/dist/es2015/map/utils.js
CHANGED
|
@@ -445,15 +445,6 @@ export const now = () => {
|
|
|
445
445
|
return Number(new Date());
|
|
446
446
|
};
|
|
447
447
|
|
|
448
|
-
export const elementOffset = (element) => {
|
|
449
|
-
const offset = {
|
|
450
|
-
left: element.offsetLeft,
|
|
451
|
-
top: element.offsetTop
|
|
452
|
-
};
|
|
453
|
-
|
|
454
|
-
return offset;
|
|
455
|
-
};
|
|
456
|
-
|
|
457
448
|
export const noop = () => {};
|
|
458
449
|
|
|
459
450
|
/* eslint-enable arrow-body-style */
|