@progress/kendo-angular-grid 20.1.2-develop.2 → 20.1.2
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.
|
@@ -195,6 +195,7 @@ export class DataBindingDirective {
|
|
|
195
195
|
}
|
|
196
196
|
this.grid.data = this.process(this.state);
|
|
197
197
|
this.grid.updateNavigationMetadata();
|
|
198
|
+
this.grid.ngDoCheck();
|
|
198
199
|
this.dataChanged = false;
|
|
199
200
|
}
|
|
200
201
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DataBindingDirective, deps: [{ token: i1.GridComponent }, { token: i0.ChangeDetectorRef }, { token: i2.LocalDataChangesService }, { token: i3.RowReorderService }, { token: i4.ContextService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -82,8 +82,7 @@ export class DragHintService {
|
|
|
82
82
|
}
|
|
83
83
|
this.dom = document.createElement("div");
|
|
84
84
|
decorate(this.dom);
|
|
85
|
-
const
|
|
86
|
-
const safeTitle = sanitized?.replace(/<[^>]*>/g, '');
|
|
85
|
+
const safeTitle = this.sanitizer.sanitize(SecurityContext.HTML, title);
|
|
87
86
|
const innerHtml = this.isSVG ?
|
|
88
87
|
svgIconsMarkup(this.cancelIcon.viewBox, this.cancelIcon.content, safeTitle) :
|
|
89
88
|
fontIconsMarkup(safeTitle);
|
|
@@ -10,7 +10,7 @@ export const packageMetadata = {
|
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCode: 'KENDOUIANGULAR',
|
|
12
12
|
productCodes: ['KENDOUIANGULAR'],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: '20.1.2
|
|
13
|
+
publishDate: 1764348907,
|
|
14
|
+
version: '20.1.2',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -248,8 +248,7 @@ class DragHintService {
|
|
|
248
248
|
}
|
|
249
249
|
this.dom = document.createElement("div");
|
|
250
250
|
decorate(this.dom);
|
|
251
|
-
const
|
|
252
|
-
const safeTitle = sanitized?.replace(/<[^>]*>/g, '');
|
|
251
|
+
const safeTitle = this.sanitizer.sanitize(SecurityContext.HTML, title);
|
|
253
252
|
const innerHtml = this.isSVG ?
|
|
254
253
|
svgIconsMarkup(this.cancelIcon.viewBox, this.cancelIcon.content, safeTitle) :
|
|
255
254
|
fontIconsMarkup(safeTitle);
|
|
@@ -22842,8 +22841,8 @@ const packageMetadata = {
|
|
|
22842
22841
|
productName: 'Kendo UI for Angular',
|
|
22843
22842
|
productCode: 'KENDOUIANGULAR',
|
|
22844
22843
|
productCodes: ['KENDOUIANGULAR'],
|
|
22845
|
-
publishDate:
|
|
22846
|
-
version: '20.1.2
|
|
22844
|
+
publishDate: 1764348907,
|
|
22845
|
+
version: '20.1.2',
|
|
22847
22846
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
22848
22847
|
};
|
|
22849
22848
|
|
|
@@ -34162,6 +34161,7 @@ class DataBindingDirective {
|
|
|
34162
34161
|
}
|
|
34163
34162
|
this.grid.data = this.process(this.state);
|
|
34164
34163
|
this.grid.updateNavigationMetadata();
|
|
34164
|
+
this.grid.ngDoCheck();
|
|
34165
34165
|
this.dataChanged = false;
|
|
34166
34166
|
}
|
|
34167
34167
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DataBindingDirective, deps: [{ token: GridComponent }, { token: i0.ChangeDetectorRef }, { token: LocalDataChangesService }, { token: RowReorderService }, { token: ContextService }], target: i0.ɵɵFactoryTarget.Directive });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-grid",
|
|
3
|
-
"version": "20.1.2
|
|
3
|
+
"version": "20.1.2",
|
|
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",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"package": {
|
|
42
42
|
"productName": "Kendo UI for Angular",
|
|
43
43
|
"productCode": "KENDOUIANGULAR",
|
|
44
|
-
"publishDate":
|
|
44
|
+
"publishDate": 1764348907,
|
|
45
45
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
46
46
|
}
|
|
47
47
|
},
|
|
@@ -54,29 +54,29 @@
|
|
|
54
54
|
"@progress/kendo-data-query": "^1.0.0",
|
|
55
55
|
"@progress/kendo-drawing": "^1.21.0",
|
|
56
56
|
"@progress/kendo-licensing": "^1.7.0",
|
|
57
|
-
"@progress/kendo-angular-buttons": "20.1.2
|
|
58
|
-
"@progress/kendo-angular-common": "20.1.2
|
|
59
|
-
"@progress/kendo-angular-dateinputs": "20.1.2
|
|
60
|
-
"@progress/kendo-angular-layout": "20.1.2
|
|
61
|
-
"@progress/kendo-angular-navigation": "20.1.2
|
|
62
|
-
"@progress/kendo-angular-dropdowns": "20.1.2
|
|
63
|
-
"@progress/kendo-angular-excel-export": "20.1.2
|
|
64
|
-
"@progress/kendo-angular-icons": "20.1.2
|
|
65
|
-
"@progress/kendo-angular-inputs": "20.1.2
|
|
66
|
-
"@progress/kendo-angular-conversational-ui": "20.1.2
|
|
67
|
-
"@progress/kendo-angular-intl": "20.1.2
|
|
68
|
-
"@progress/kendo-angular-l10n": "20.1.2
|
|
69
|
-
"@progress/kendo-angular-label": "20.1.2
|
|
70
|
-
"@progress/kendo-angular-pager": "20.1.2
|
|
71
|
-
"@progress/kendo-angular-pdf-export": "20.1.2
|
|
72
|
-
"@progress/kendo-angular-popup": "20.1.2
|
|
73
|
-
"@progress/kendo-angular-toolbar": "20.1.2
|
|
74
|
-
"@progress/kendo-angular-utils": "20.1.2
|
|
57
|
+
"@progress/kendo-angular-buttons": "20.1.2",
|
|
58
|
+
"@progress/kendo-angular-common": "20.1.2",
|
|
59
|
+
"@progress/kendo-angular-dateinputs": "20.1.2",
|
|
60
|
+
"@progress/kendo-angular-layout": "20.1.2",
|
|
61
|
+
"@progress/kendo-angular-navigation": "20.1.2",
|
|
62
|
+
"@progress/kendo-angular-dropdowns": "20.1.2",
|
|
63
|
+
"@progress/kendo-angular-excel-export": "20.1.2",
|
|
64
|
+
"@progress/kendo-angular-icons": "20.1.2",
|
|
65
|
+
"@progress/kendo-angular-inputs": "20.1.2",
|
|
66
|
+
"@progress/kendo-angular-conversational-ui": "20.1.2",
|
|
67
|
+
"@progress/kendo-angular-intl": "20.1.2",
|
|
68
|
+
"@progress/kendo-angular-l10n": "20.1.2",
|
|
69
|
+
"@progress/kendo-angular-label": "20.1.2",
|
|
70
|
+
"@progress/kendo-angular-pager": "20.1.2",
|
|
71
|
+
"@progress/kendo-angular-pdf-export": "20.1.2",
|
|
72
|
+
"@progress/kendo-angular-popup": "20.1.2",
|
|
73
|
+
"@progress/kendo-angular-toolbar": "20.1.2",
|
|
74
|
+
"@progress/kendo-angular-utils": "20.1.2",
|
|
75
75
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
76
76
|
},
|
|
77
77
|
"dependencies": {
|
|
78
78
|
"tslib": "^2.3.1",
|
|
79
|
-
"@progress/kendo-angular-schematics": "20.1.2
|
|
79
|
+
"@progress/kendo-angular-schematics": "20.1.2",
|
|
80
80
|
"@progress/kendo-common": "^1.0.1",
|
|
81
81
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
82
82
|
},
|
|
@@ -4,14 +4,14 @@ 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 deps of the dropdowns
|
|
7
|
-
'@progress/kendo-angular-treeview': '20.1.2
|
|
8
|
-
'@progress/kendo-angular-navigation': '20.1.2
|
|
7
|
+
'@progress/kendo-angular-treeview': '20.1.2',
|
|
8
|
+
'@progress/kendo-angular-navigation': '20.1.2',
|
|
9
9
|
// peer dependency of kendo-angular-inputs
|
|
10
|
-
'@progress/kendo-angular-dialog': '20.1.2
|
|
10
|
+
'@progress/kendo-angular-dialog': '20.1.2',
|
|
11
11
|
// peer dependency of kendo-angular-icons
|
|
12
12
|
'@progress/kendo-svg-icons': '^4.0.0',
|
|
13
13
|
// peer dependency of kendo-angular-layout
|
|
14
|
-
'@progress/kendo-angular-progressbar': '20.1.2
|
|
14
|
+
'@progress/kendo-angular-progressbar': '20.1.2'
|
|
15
15
|
} });
|
|
16
16
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
17
17
|
}
|