@progress/kendo-angular-grid 15.1.1-develop.2 → 15.1.1-develop.4
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/esm2020/common/clipboard.directive.mjs +1 -1
- package/esm2020/common/clipboard.service.mjs +1 -1
- package/esm2020/package-metadata.mjs +2 -2
- package/fesm2015/progress-kendo-angular-grid.mjs +4 -4
- package/fesm2020/progress-kendo-angular-grid.mjs +4 -4
- package/package.json +17 -17
- package/schematics/ngAdd/index.js +3 -3
|
@@ -73,7 +73,7 @@ export class GridClipboardDirective {
|
|
|
73
73
|
break;
|
|
74
74
|
}
|
|
75
75
|
const isPaste = operationType === 'paste';
|
|
76
|
-
const pastedData = args.clipboardData.getData('text')
|
|
76
|
+
const pastedData = args.clipboardData.getData('text');
|
|
77
77
|
const visibleCols = this.host.columns.toArray().filter(c => c.isVisible);
|
|
78
78
|
const data = isPaste ?
|
|
79
79
|
{
|
|
@@ -129,7 +129,7 @@ export class ClipboardService {
|
|
|
129
129
|
}
|
|
130
130
|
getGridData(data, columns, targetType, targetRowIndex, options) {
|
|
131
131
|
const separator = data.includes(`\r\n`) ? `\r\n` : data.includes(`\n`) ? `\n` : null;
|
|
132
|
-
const dataRows = separator ? data.split(separator) : [data];
|
|
132
|
+
const dataRows = separator ? data.split(separator).filter(rowData => rowData.length) : [data];
|
|
133
133
|
this.targetRowIndex = targetRowIndex;
|
|
134
134
|
if (targetType === 'activeCell') {
|
|
135
135
|
if (options.wholeRow) {
|
|
@@ -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: '15.1.1-develop.
|
|
12
|
+
publishDate: 1709125487,
|
|
13
|
+
version: '15.1.1-develop.4',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -4550,8 +4550,8 @@ const packageMetadata = {
|
|
|
4550
4550
|
name: '@progress/kendo-angular-grid',
|
|
4551
4551
|
productName: 'Kendo UI for Angular',
|
|
4552
4552
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
4553
|
-
publishDate:
|
|
4554
|
-
version: '15.1.1-develop.
|
|
4553
|
+
publishDate: 1709125487,
|
|
4554
|
+
version: '15.1.1-develop.4',
|
|
4555
4555
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
4556
4556
|
};
|
|
4557
4557
|
|
|
@@ -6997,7 +6997,7 @@ class ClipboardService {
|
|
|
6997
6997
|
getGridData(data, columns, targetType, targetRowIndex, options) {
|
|
6998
6998
|
var _a;
|
|
6999
6999
|
const separator = data.includes(`\r\n`) ? `\r\n` : data.includes(`\n`) ? `\n` : null;
|
|
7000
|
-
const dataRows = separator ? data.split(separator) : [data];
|
|
7000
|
+
const dataRows = separator ? data.split(separator).filter(rowData => rowData.length) : [data];
|
|
7001
7001
|
this.targetRowIndex = targetRowIndex;
|
|
7002
7002
|
if (targetType === 'activeCell') {
|
|
7003
7003
|
if (options.wholeRow) {
|
|
@@ -26798,7 +26798,7 @@ class GridClipboardDirective {
|
|
|
26798
26798
|
break;
|
|
26799
26799
|
}
|
|
26800
26800
|
const isPaste = operationType === 'paste';
|
|
26801
|
-
const pastedData = args.clipboardData.getData('text')
|
|
26801
|
+
const pastedData = args.clipboardData.getData('text');
|
|
26802
26802
|
const visibleCols = this.host.columns.toArray().filter(c => c.isVisible);
|
|
26803
26803
|
const data = isPaste ?
|
|
26804
26804
|
{
|
|
@@ -4518,8 +4518,8 @@ const packageMetadata = {
|
|
|
4518
4518
|
name: '@progress/kendo-angular-grid',
|
|
4519
4519
|
productName: 'Kendo UI for Angular',
|
|
4520
4520
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
4521
|
-
publishDate:
|
|
4522
|
-
version: '15.1.1-develop.
|
|
4521
|
+
publishDate: 1709125487,
|
|
4522
|
+
version: '15.1.1-develop.4',
|
|
4523
4523
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
4524
4524
|
};
|
|
4525
4525
|
|
|
@@ -6949,7 +6949,7 @@ class ClipboardService {
|
|
|
6949
6949
|
}
|
|
6950
6950
|
getGridData(data, columns, targetType, targetRowIndex, options) {
|
|
6951
6951
|
const separator = data.includes(`\r\n`) ? `\r\n` : data.includes(`\n`) ? `\n` : null;
|
|
6952
|
-
const dataRows = separator ? data.split(separator) : [data];
|
|
6952
|
+
const dataRows = separator ? data.split(separator).filter(rowData => rowData.length) : [data];
|
|
6953
6953
|
this.targetRowIndex = targetRowIndex;
|
|
6954
6954
|
if (targetType === 'activeCell') {
|
|
6955
6955
|
if (options.wholeRow) {
|
|
@@ -26692,7 +26692,7 @@ class GridClipboardDirective {
|
|
|
26692
26692
|
break;
|
|
26693
26693
|
}
|
|
26694
26694
|
const isPaste = operationType === 'paste';
|
|
26695
|
-
const pastedData = args.clipboardData.getData('text')
|
|
26695
|
+
const pastedData = args.clipboardData.getData('text');
|
|
26696
26696
|
const visibleCols = this.host.columns.toArray().filter(c => c.isVisible);
|
|
26697
26697
|
const data = isPaste ?
|
|
26698
26698
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-grid",
|
|
3
|
-
"version": "15.1.1-develop.
|
|
3
|
+
"version": "15.1.1-develop.4",
|
|
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,26 +33,26 @@
|
|
|
33
33
|
"@progress/kendo-data-query": "^1.0.0",
|
|
34
34
|
"@progress/kendo-drawing": "^1.19.0",
|
|
35
35
|
"@progress/kendo-licensing": "^1.0.2",
|
|
36
|
-
"@progress/kendo-angular-buttons": "15.1.1-develop.
|
|
37
|
-
"@progress/kendo-angular-common": "15.1.1-develop.
|
|
38
|
-
"@progress/kendo-angular-dateinputs": "15.1.1-develop.
|
|
39
|
-
"@progress/kendo-angular-layout": "15.1.1-develop.
|
|
40
|
-
"@progress/kendo-angular-dropdowns": "15.1.1-develop.
|
|
41
|
-
"@progress/kendo-angular-excel-export": "15.1.1-develop.
|
|
42
|
-
"@progress/kendo-angular-icons": "15.1.1-develop.
|
|
43
|
-
"@progress/kendo-angular-inputs": "15.1.1-develop.
|
|
44
|
-
"@progress/kendo-angular-intl": "15.1.1-develop.
|
|
45
|
-
"@progress/kendo-angular-l10n": "15.1.1-develop.
|
|
46
|
-
"@progress/kendo-angular-label": "15.1.1-develop.
|
|
47
|
-
"@progress/kendo-angular-pdf-export": "15.1.1-develop.
|
|
48
|
-
"@progress/kendo-angular-popup": "15.1.1-develop.
|
|
49
|
-
"@progress/kendo-angular-utils": "15.1.1-develop.
|
|
36
|
+
"@progress/kendo-angular-buttons": "15.1.1-develop.4",
|
|
37
|
+
"@progress/kendo-angular-common": "15.1.1-develop.4",
|
|
38
|
+
"@progress/kendo-angular-dateinputs": "15.1.1-develop.4",
|
|
39
|
+
"@progress/kendo-angular-layout": "15.1.1-develop.4",
|
|
40
|
+
"@progress/kendo-angular-dropdowns": "15.1.1-develop.4",
|
|
41
|
+
"@progress/kendo-angular-excel-export": "15.1.1-develop.4",
|
|
42
|
+
"@progress/kendo-angular-icons": "15.1.1-develop.4",
|
|
43
|
+
"@progress/kendo-angular-inputs": "15.1.1-develop.4",
|
|
44
|
+
"@progress/kendo-angular-intl": "15.1.1-develop.4",
|
|
45
|
+
"@progress/kendo-angular-l10n": "15.1.1-develop.4",
|
|
46
|
+
"@progress/kendo-angular-label": "15.1.1-develop.4",
|
|
47
|
+
"@progress/kendo-angular-pdf-export": "15.1.1-develop.4",
|
|
48
|
+
"@progress/kendo-angular-popup": "15.1.1-develop.4",
|
|
49
|
+
"@progress/kendo-angular-utils": "15.1.1-develop.4",
|
|
50
50
|
"rxjs": "^6.5.3 || ^7.0.0",
|
|
51
|
-
"@progress/kendo-angular-spreadsheet": "15.1.1-develop.
|
|
51
|
+
"@progress/kendo-angular-spreadsheet": "15.1.1-develop.4"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"tslib": "^2.3.1",
|
|
55
|
-
"@progress/kendo-angular-schematics": "15.1.1-develop.
|
|
55
|
+
"@progress/kendo-angular-schematics": "15.1.1-develop.4",
|
|
56
56
|
"@progress/kendo-common": "^0.2.0",
|
|
57
57
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
58
58
|
},
|
|
@@ -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': '15.1.1-develop.
|
|
7
|
+
'@progress/kendo-angular-treeview': '15.1.1-develop.4',
|
|
8
8
|
// peer dependency of kendo-angular-inputs
|
|
9
|
-
'@progress/kendo-angular-dialog': '15.1.1-develop.
|
|
9
|
+
'@progress/kendo-angular-dialog': '15.1.1-develop.4',
|
|
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': '15.1.1-develop.
|
|
13
|
+
'@progress/kendo-angular-progressbar': '15.1.1-develop.4'
|
|
14
14
|
} });
|
|
15
15
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
16
16
|
}
|