@progress/kendo-angular-grid 14.1.0 → 14.1.1-develop.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.
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-grid',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '14.1.
|
|
12
|
+
publishDate: 1699865049,
|
|
13
|
+
version: '14.1.1-develop.1',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -154,21 +154,25 @@ export class PagerComponent {
|
|
|
154
154
|
}
|
|
155
155
|
}
|
|
156
156
|
navigateToPreviousPage(e) {
|
|
157
|
+
e.preventDefault();
|
|
157
158
|
if (this.shouldTriggerPageChange(e.target, this.currentPage > 1)) {
|
|
158
159
|
this.pagerContext.prevPage();
|
|
159
160
|
}
|
|
160
161
|
}
|
|
161
162
|
navigateToNextPage(e) {
|
|
163
|
+
e.preventDefault();
|
|
162
164
|
if (this.shouldTriggerPageChange(e.target, this.currentPage < this.totalPages)) {
|
|
163
165
|
this.pagerContext.nextPage();
|
|
164
166
|
}
|
|
165
167
|
}
|
|
166
168
|
navigateToFirstPage(e) {
|
|
169
|
+
e.preventDefault();
|
|
167
170
|
if (this.shouldTriggerPageChange(e.target, this.currentPage > 1)) {
|
|
168
171
|
this.pagerContext.changePage(0);
|
|
169
172
|
}
|
|
170
173
|
}
|
|
171
174
|
navigateToLastPage(e) {
|
|
175
|
+
e.preventDefault();
|
|
172
176
|
if (this.shouldTriggerPageChange(e.target, this.currentPage < this.totalPages)) {
|
|
173
177
|
this.pagerContext.changePage(this.totalPages - 1);
|
|
174
178
|
}
|
|
@@ -4474,8 +4474,8 @@ const packageMetadata = {
|
|
|
4474
4474
|
name: '@progress/kendo-angular-grid',
|
|
4475
4475
|
productName: 'Kendo UI for Angular',
|
|
4476
4476
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
4477
|
-
publishDate:
|
|
4478
|
-
version: '14.1.
|
|
4477
|
+
publishDate: 1699865049,
|
|
4478
|
+
version: '14.1.1-develop.1',
|
|
4479
4479
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
4480
4480
|
};
|
|
4481
4481
|
|
|
@@ -8030,21 +8030,25 @@ class PagerComponent {
|
|
|
8030
8030
|
}
|
|
8031
8031
|
}
|
|
8032
8032
|
navigateToPreviousPage(e) {
|
|
8033
|
+
e.preventDefault();
|
|
8033
8034
|
if (this.shouldTriggerPageChange(e.target, this.currentPage > 1)) {
|
|
8034
8035
|
this.pagerContext.prevPage();
|
|
8035
8036
|
}
|
|
8036
8037
|
}
|
|
8037
8038
|
navigateToNextPage(e) {
|
|
8039
|
+
e.preventDefault();
|
|
8038
8040
|
if (this.shouldTriggerPageChange(e.target, this.currentPage < this.totalPages)) {
|
|
8039
8041
|
this.pagerContext.nextPage();
|
|
8040
8042
|
}
|
|
8041
8043
|
}
|
|
8042
8044
|
navigateToFirstPage(e) {
|
|
8045
|
+
e.preventDefault();
|
|
8043
8046
|
if (this.shouldTriggerPageChange(e.target, this.currentPage > 1)) {
|
|
8044
8047
|
this.pagerContext.changePage(0);
|
|
8045
8048
|
}
|
|
8046
8049
|
}
|
|
8047
8050
|
navigateToLastPage(e) {
|
|
8051
|
+
e.preventDefault();
|
|
8048
8052
|
if (this.shouldTriggerPageChange(e.target, this.currentPage < this.totalPages)) {
|
|
8049
8053
|
this.pagerContext.changePage(this.totalPages - 1);
|
|
8050
8054
|
}
|
|
@@ -4442,8 +4442,8 @@ const packageMetadata = {
|
|
|
4442
4442
|
name: '@progress/kendo-angular-grid',
|
|
4443
4443
|
productName: 'Kendo UI for Angular',
|
|
4444
4444
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
4445
|
-
publishDate:
|
|
4446
|
-
version: '14.1.
|
|
4445
|
+
publishDate: 1699865049,
|
|
4446
|
+
version: '14.1.1-develop.1',
|
|
4447
4447
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
4448
4448
|
};
|
|
4449
4449
|
|
|
@@ -7984,21 +7984,25 @@ class PagerComponent {
|
|
|
7984
7984
|
}
|
|
7985
7985
|
}
|
|
7986
7986
|
navigateToPreviousPage(e) {
|
|
7987
|
+
e.preventDefault();
|
|
7987
7988
|
if (this.shouldTriggerPageChange(e.target, this.currentPage > 1)) {
|
|
7988
7989
|
this.pagerContext.prevPage();
|
|
7989
7990
|
}
|
|
7990
7991
|
}
|
|
7991
7992
|
navigateToNextPage(e) {
|
|
7993
|
+
e.preventDefault();
|
|
7992
7994
|
if (this.shouldTriggerPageChange(e.target, this.currentPage < this.totalPages)) {
|
|
7993
7995
|
this.pagerContext.nextPage();
|
|
7994
7996
|
}
|
|
7995
7997
|
}
|
|
7996
7998
|
navigateToFirstPage(e) {
|
|
7999
|
+
e.preventDefault();
|
|
7997
8000
|
if (this.shouldTriggerPageChange(e.target, this.currentPage > 1)) {
|
|
7998
8001
|
this.pagerContext.changePage(0);
|
|
7999
8002
|
}
|
|
8000
8003
|
}
|
|
8001
8004
|
navigateToLastPage(e) {
|
|
8005
|
+
e.preventDefault();
|
|
8002
8006
|
if (this.shouldTriggerPageChange(e.target, this.currentPage < this.totalPages)) {
|
|
8003
8007
|
this.pagerContext.changePage(this.totalPages - 1);
|
|
8004
8008
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-grid",
|
|
3
|
-
"version": "14.1.
|
|
3
|
+
"version": "14.1.1-develop.1",
|
|
4
4
|
"description": "Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -33,25 +33,25 @@
|
|
|
33
33
|
"@progress/kendo-data-query": "^1.0.0",
|
|
34
34
|
"@progress/kendo-drawing": "^1.17.2",
|
|
35
35
|
"@progress/kendo-licensing": "^1.0.2",
|
|
36
|
-
"@progress/kendo-angular-buttons": "14.1.
|
|
37
|
-
"@progress/kendo-angular-common": "14.1.
|
|
38
|
-
"@progress/kendo-angular-dateinputs": "14.1.
|
|
39
|
-
"@progress/kendo-angular-layout": "14.1.
|
|
40
|
-
"@progress/kendo-angular-dropdowns": "14.1.
|
|
41
|
-
"@progress/kendo-angular-excel-export": "14.1.
|
|
42
|
-
"@progress/kendo-angular-icons": "14.1.
|
|
43
|
-
"@progress/kendo-angular-inputs": "14.1.
|
|
44
|
-
"@progress/kendo-angular-intl": "14.1.
|
|
45
|
-
"@progress/kendo-angular-l10n": "14.1.
|
|
46
|
-
"@progress/kendo-angular-label": "14.1.
|
|
47
|
-
"@progress/kendo-angular-pdf-export": "14.1.
|
|
48
|
-
"@progress/kendo-angular-popup": "14.1.
|
|
49
|
-
"@progress/kendo-angular-utils": "14.1.
|
|
36
|
+
"@progress/kendo-angular-buttons": "14.1.1-develop.1",
|
|
37
|
+
"@progress/kendo-angular-common": "14.1.1-develop.1",
|
|
38
|
+
"@progress/kendo-angular-dateinputs": "14.1.1-develop.1",
|
|
39
|
+
"@progress/kendo-angular-layout": "14.1.1-develop.1",
|
|
40
|
+
"@progress/kendo-angular-dropdowns": "14.1.1-develop.1",
|
|
41
|
+
"@progress/kendo-angular-excel-export": "14.1.1-develop.1",
|
|
42
|
+
"@progress/kendo-angular-icons": "14.1.1-develop.1",
|
|
43
|
+
"@progress/kendo-angular-inputs": "14.1.1-develop.1",
|
|
44
|
+
"@progress/kendo-angular-intl": "14.1.1-develop.1",
|
|
45
|
+
"@progress/kendo-angular-l10n": "14.1.1-develop.1",
|
|
46
|
+
"@progress/kendo-angular-label": "14.1.1-develop.1",
|
|
47
|
+
"@progress/kendo-angular-pdf-export": "14.1.1-develop.1",
|
|
48
|
+
"@progress/kendo-angular-popup": "14.1.1-develop.1",
|
|
49
|
+
"@progress/kendo-angular-utils": "14.1.1-develop.1",
|
|
50
50
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"tslib": "^2.3.1",
|
|
54
|
-
"@progress/kendo-angular-schematics": "14.1.
|
|
54
|
+
"@progress/kendo-angular-schematics": "14.1.1-develop.1",
|
|
55
55
|
"@progress/kendo-common": "^0.2.0",
|
|
56
56
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
57
57
|
},
|
|
@@ -4,13 +4,13 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
4
4
|
function default_1(options) {
|
|
5
5
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'GridModule', package: 'grid', peerDependencies: {
|
|
6
6
|
// peer dep of the dropdowns
|
|
7
|
-
'@progress/kendo-angular-treeview': '14.1.
|
|
7
|
+
'@progress/kendo-angular-treeview': '14.1.1-develop.1',
|
|
8
8
|
// peer dependency of kendo-angular-inputs
|
|
9
|
-
'@progress/kendo-angular-dialog': '14.1.
|
|
9
|
+
'@progress/kendo-angular-dialog': '14.1.1-develop.1',
|
|
10
10
|
// peer dependency of kendo-angular-icons
|
|
11
11
|
'@progress/kendo-svg-icons': '^2.0.0',
|
|
12
12
|
// peer dependency of kendo-angular-layout
|
|
13
|
-
'@progress/kendo-angular-progressbar': '14.1.
|
|
13
|
+
'@progress/kendo-angular-progressbar': '14.1.1-develop.1'
|
|
14
14
|
} });
|
|
15
15
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
16
16
|
}
|