@progress/kendo-vue-grid 3.7.4-dev.202211041243 → 3.7.4-dev.202211100847
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-vue-grid.js +1 -1
- package/dist/es/VirtualScroll.js +4 -1
- package/dist/es/package-metadata.js +1 -1
- package/dist/esm/VirtualScroll.js +4 -1
- package/dist/esm/package-metadata.js +1 -1
- package/dist/npm/VirtualScroll.js +4 -1
- package/dist/npm/package-metadata.js +1 -1
- package/package.json +14 -14
package/dist/es/VirtualScroll.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { canUseDOM } from '@progress/kendo-vue-common';
|
|
1
2
|
/**
|
|
2
3
|
* @hidden
|
|
3
4
|
*/
|
|
@@ -190,7 +191,9 @@ var VirtualScroll = /** @class */ (function () {
|
|
|
190
191
|
}
|
|
191
192
|
var grid = this;
|
|
192
193
|
clearTimeout(this.syncTimeout);
|
|
193
|
-
|
|
194
|
+
if (canUseDOM) {
|
|
195
|
+
this.syncTimeout = window.setTimeout(function () { grid.syncScroll(); }, 200);
|
|
196
|
+
}
|
|
194
197
|
var scrollTop = this.container.scrollTop;
|
|
195
198
|
var prev = this.prevScrollPos;
|
|
196
199
|
this.prevScrollPos = scrollTop;
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-grid',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1668069642,
|
|
9
9
|
version: '',
|
|
10
10
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
11
11
|
};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { canUseDOM } from '@progress/kendo-vue-common';
|
|
1
2
|
/**
|
|
2
3
|
* @hidden
|
|
3
4
|
*/
|
|
@@ -190,7 +191,9 @@ var VirtualScroll = /** @class */ (function () {
|
|
|
190
191
|
}
|
|
191
192
|
var grid = this;
|
|
192
193
|
clearTimeout(this.syncTimeout);
|
|
193
|
-
|
|
194
|
+
if (canUseDOM) {
|
|
195
|
+
this.syncTimeout = window.setTimeout(function () { grid.syncScroll(); }, 200);
|
|
196
|
+
}
|
|
194
197
|
var scrollTop = this.container.scrollTop;
|
|
195
198
|
var prev = this.prevScrollPos;
|
|
196
199
|
this.prevScrollPos = scrollTop;
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-grid',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1668069642,
|
|
9
9
|
version: '',
|
|
10
10
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
11
11
|
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.VirtualScroll = void 0;
|
|
4
|
+
var kendo_vue_common_1 = require("@progress/kendo-vue-common");
|
|
4
5
|
/**
|
|
5
6
|
* @hidden
|
|
6
7
|
*/
|
|
@@ -193,7 +194,9 @@ var VirtualScroll = /** @class */ (function () {
|
|
|
193
194
|
}
|
|
194
195
|
var grid = this;
|
|
195
196
|
clearTimeout(this.syncTimeout);
|
|
196
|
-
|
|
197
|
+
if (kendo_vue_common_1.canUseDOM) {
|
|
198
|
+
this.syncTimeout = window.setTimeout(function () { grid.syncScroll(); }, 200);
|
|
199
|
+
}
|
|
197
200
|
var scrollTop = this.container.scrollTop;
|
|
198
201
|
var prev = this.prevScrollPos;
|
|
199
202
|
this.prevScrollPos = scrollTop;
|
|
@@ -8,7 +8,7 @@ exports.packageMetadata = {
|
|
|
8
8
|
name: '@progress/kendo-vue-grid',
|
|
9
9
|
productName: 'Kendo UI for Vue',
|
|
10
10
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
11
|
-
publishDate:
|
|
11
|
+
publishDate: 1668069642,
|
|
12
12
|
version: '',
|
|
13
13
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
14
14
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-vue-grid",
|
|
3
|
-
"version": "3.7.4-dev.
|
|
3
|
+
"version": "3.7.4-dev.202211100847",
|
|
4
4
|
"description": "Kendo UI for Vue Grid package",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -41,24 +41,24 @@
|
|
|
41
41
|
"vue": "^2.6.12 || ^3.0.2"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@progress/kendo-vue-common": "3.7.4-dev.
|
|
44
|
+
"@progress/kendo-vue-common": "3.7.4-dev.202211100847"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@progress/kendo-data-query": "^1.5.4",
|
|
48
48
|
"@progress/kendo-drawing": "^1.9.3",
|
|
49
49
|
"@progress/kendo-licensing": "^1.1.0",
|
|
50
|
-
"@progress/kendo-vue-animation": "3.7.4-dev.
|
|
51
|
-
"@progress/kendo-vue-buttons": "3.7.4-dev.
|
|
52
|
-
"@progress/kendo-vue-charts": "3.7.4-dev.
|
|
53
|
-
"@progress/kendo-vue-data-tools": "3.7.4-dev.
|
|
54
|
-
"@progress/kendo-vue-dateinputs": "3.7.4-dev.
|
|
55
|
-
"@progress/kendo-vue-dropdowns": "3.7.4-dev.
|
|
56
|
-
"@progress/kendo-vue-excel-export": "3.7.4-dev.
|
|
57
|
-
"@progress/kendo-vue-indicators": "3.7.4-dev.
|
|
58
|
-
"@progress/kendo-vue-inputs": "3.7.4-dev.
|
|
59
|
-
"@progress/kendo-vue-intl": "3.7.4-dev.
|
|
60
|
-
"@progress/kendo-vue-pdf": "3.7.4-dev.
|
|
61
|
-
"@progress/kendo-vue-popup": "3.7.4-dev.
|
|
50
|
+
"@progress/kendo-vue-animation": "3.7.4-dev.202211100847",
|
|
51
|
+
"@progress/kendo-vue-buttons": "3.7.4-dev.202211100847",
|
|
52
|
+
"@progress/kendo-vue-charts": "3.7.4-dev.202211100847",
|
|
53
|
+
"@progress/kendo-vue-data-tools": "3.7.4-dev.202211100847",
|
|
54
|
+
"@progress/kendo-vue-dateinputs": "3.7.4-dev.202211100847",
|
|
55
|
+
"@progress/kendo-vue-dropdowns": "3.7.4-dev.202211100847",
|
|
56
|
+
"@progress/kendo-vue-excel-export": "3.7.4-dev.202211100847",
|
|
57
|
+
"@progress/kendo-vue-indicators": "3.7.4-dev.202211100847",
|
|
58
|
+
"@progress/kendo-vue-inputs": "3.7.4-dev.202211100847",
|
|
59
|
+
"@progress/kendo-vue-intl": "3.7.4-dev.202211100847",
|
|
60
|
+
"@progress/kendo-vue-pdf": "3.7.4-dev.202211100847",
|
|
61
|
+
"@progress/kendo-vue-popup": "3.7.4-dev.202211100847",
|
|
62
62
|
"cldr-core": "^41.0.0",
|
|
63
63
|
"cldr-dates-full": "^41.0.0",
|
|
64
64
|
"cldr-numbers-full": "^41.0.0",
|