@progress/kendo-angular-grid 20.1.0 → 20.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.
@@ -17,7 +17,7 @@ import * as i0 from "@angular/core";
17
17
  * [sorting]({% slug sorting_grid %}), and [grouping]({% slug grouping_grid %}).
18
18
  *
19
19
  * Use this directive with local data and enable the Grid data operations with minimal configuration.
20
- * ([More information and examples]({% slug local_data_grid %}#toc-using-the-data-binding-directive)).
20
+ * ([More information and examples]({% slug local_data_grid %}#toc-automatic-data-processing)).
21
21
  *
22
22
  * @example
23
23
  * ```html
@@ -19,7 +19,7 @@ import * as i4 from "./common/provider.service";
19
19
  * [sorting]({% slug sorting_grid %}), and [grouping]({% slug grouping_grid %}).
20
20
  *
21
21
  * Use this directive with local data and enable the Grid data operations with minimal configuration.
22
- * ([More information and examples]({% slug local_data_grid %}#toc-using-the-data-binding-directive)).
22
+ * ([More information and examples]({% slug local_data_grid %}#toc-automatic-data-processing)).
23
23
  *
24
24
  * @example
25
25
  * ```html
@@ -284,7 +284,7 @@ export class FilterMenuContainerComponent {
284
284
  [menuTabbingService]="menuTabbingService">
285
285
  </ng-container>
286
286
  <ng-template #multiFilter>
287
- <kendo-grid-multicheckbox-filter [column]="column" (filterChange)="onCheckboxFilterChange($event)"></kendo-grid-multicheckbox-filter>
287
+ <kendo-grid-multicheckbox-filter style="display: contents;" [column]="column" (filterChange)="onCheckboxFilterChange($event)"></kendo-grid-multicheckbox-filter>
288
288
  </ng-template>
289
289
  </ng-container>
290
290
  <ng-container *ngSwitchCase="true">
@@ -339,7 +339,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
339
339
  [menuTabbingService]="menuTabbingService">
340
340
  </ng-container>
341
341
  <ng-template #multiFilter>
342
- <kendo-grid-multicheckbox-filter [column]="column" (filterChange)="onCheckboxFilterChange($event)"></kendo-grid-multicheckbox-filter>
342
+ <kendo-grid-multicheckbox-filter style="display: contents;" [column]="column" (filterChange)="onCheckboxFilterChange($event)"></kendo-grid-multicheckbox-filter>
343
343
  </ng-template>
344
344
  </ng-container>
345
345
  <ng-container *ngSwitchCase="true">
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1761117321,
14
- version: '20.1.0',
13
+ publishDate: 1761222945,
14
+ version: '20.1.1-develop.1',
15
15
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
16
16
  };
@@ -99,7 +99,9 @@ export class RowReorderService {
99
99
  const draggedDataItem = draggedDragRow?.dataItem;
100
100
  isPresent(draggedDataItem) && columnFieldsArray.forEach(column => {
101
101
  const columnValue = draggedDataItem[column];
102
- isPresent(columnValue) ? hintText += `${columnValue} ` : null;
102
+ if (isPresent(columnValue)) {
103
+ hintText += `${columnValue} `;
104
+ }
103
105
  });
104
106
  return hintText.trim();
105
107
  }
@@ -11283,7 +11283,7 @@ class FilterMenuContainerComponent {
11283
11283
  [menuTabbingService]="menuTabbingService">
11284
11284
  </ng-container>
11285
11285
  <ng-template #multiFilter>
11286
- <kendo-grid-multicheckbox-filter [column]="column" (filterChange)="onCheckboxFilterChange($event)"></kendo-grid-multicheckbox-filter>
11286
+ <kendo-grid-multicheckbox-filter style="display: contents;" [column]="column" (filterChange)="onCheckboxFilterChange($event)"></kendo-grid-multicheckbox-filter>
11287
11287
  </ng-template>
11288
11288
  </ng-container>
11289
11289
  <ng-container *ngSwitchCase="true">
@@ -11338,7 +11338,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
11338
11338
  [menuTabbingService]="menuTabbingService">
11339
11339
  </ng-container>
11340
11340
  <ng-template #multiFilter>
11341
- <kendo-grid-multicheckbox-filter [column]="column" (filterChange)="onCheckboxFilterChange($event)"></kendo-grid-multicheckbox-filter>
11341
+ <kendo-grid-multicheckbox-filter style="display: contents;" [column]="column" (filterChange)="onCheckboxFilterChange($event)"></kendo-grid-multicheckbox-filter>
11342
11342
  </ng-template>
11343
11343
  </ng-container>
11344
11344
  <ng-container *ngSwitchCase="true">
@@ -22841,8 +22841,8 @@ const packageMetadata = {
22841
22841
  productName: 'Kendo UI for Angular',
22842
22842
  productCode: 'KENDOUIANGULAR',
22843
22843
  productCodes: ['KENDOUIANGULAR'],
22844
- publishDate: 1761117321,
22845
- version: '20.1.0',
22844
+ publishDate: 1761222945,
22845
+ version: '20.1.1-develop.1',
22846
22846
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
22847
22847
  };
22848
22848
 
@@ -24005,7 +24005,9 @@ class RowReorderService {
24005
24005
  const draggedDataItem = draggedDragRow?.dataItem;
24006
24006
  isPresent$1(draggedDataItem) && columnFieldsArray.forEach(column => {
24007
24007
  const columnValue = draggedDataItem[column];
24008
- isPresent$1(columnValue) ? hintText += `${columnValue} ` : null;
24008
+ if (isPresent$1(columnValue)) {
24009
+ hintText += `${columnValue} `;
24010
+ }
24009
24011
  });
24010
24012
  return hintText.trim();
24011
24013
  }
@@ -33983,7 +33985,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
33983
33985
  * [sorting]({% slug sorting_grid %}), and [grouping]({% slug grouping_grid %}).
33984
33986
  *
33985
33987
  * Use this directive with local data and enable the Grid data operations with minimal configuration.
33986
- * ([More information and examples]({% slug local_data_grid %}#toc-using-the-data-binding-directive)).
33988
+ * ([More information and examples]({% slug local_data_grid %}#toc-automatic-data-processing)).
33987
33989
  *
33988
33990
  * @example
33989
33991
  * ```html
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-grid",
3
- "version": "20.1.0",
3
+ "version": "20.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",
@@ -41,7 +41,7 @@
41
41
  "package": {
42
42
  "productName": "Kendo UI for Angular",
43
43
  "productCode": "KENDOUIANGULAR",
44
- "publishDate": 1761117321,
44
+ "publishDate": 1761222945,
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.0",
58
- "@progress/kendo-angular-common": "20.1.0",
59
- "@progress/kendo-angular-dateinputs": "20.1.0",
60
- "@progress/kendo-angular-layout": "20.1.0",
61
- "@progress/kendo-angular-navigation": "20.1.0",
62
- "@progress/kendo-angular-dropdowns": "20.1.0",
63
- "@progress/kendo-angular-excel-export": "20.1.0",
64
- "@progress/kendo-angular-icons": "20.1.0",
65
- "@progress/kendo-angular-inputs": "20.1.0",
66
- "@progress/kendo-angular-conversational-ui": "20.1.0",
67
- "@progress/kendo-angular-intl": "20.1.0",
68
- "@progress/kendo-angular-l10n": "20.1.0",
69
- "@progress/kendo-angular-label": "20.1.0",
70
- "@progress/kendo-angular-pager": "20.1.0",
71
- "@progress/kendo-angular-pdf-export": "20.1.0",
72
- "@progress/kendo-angular-popup": "20.1.0",
73
- "@progress/kendo-angular-toolbar": "20.1.0",
74
- "@progress/kendo-angular-utils": "20.1.0",
57
+ "@progress/kendo-angular-buttons": "20.1.1-develop.1",
58
+ "@progress/kendo-angular-common": "20.1.1-develop.1",
59
+ "@progress/kendo-angular-dateinputs": "20.1.1-develop.1",
60
+ "@progress/kendo-angular-layout": "20.1.1-develop.1",
61
+ "@progress/kendo-angular-navigation": "20.1.1-develop.1",
62
+ "@progress/kendo-angular-dropdowns": "20.1.1-develop.1",
63
+ "@progress/kendo-angular-excel-export": "20.1.1-develop.1",
64
+ "@progress/kendo-angular-icons": "20.1.1-develop.1",
65
+ "@progress/kendo-angular-inputs": "20.1.1-develop.1",
66
+ "@progress/kendo-angular-conversational-ui": "20.1.1-develop.1",
67
+ "@progress/kendo-angular-intl": "20.1.1-develop.1",
68
+ "@progress/kendo-angular-l10n": "20.1.1-develop.1",
69
+ "@progress/kendo-angular-label": "20.1.1-develop.1",
70
+ "@progress/kendo-angular-pager": "20.1.1-develop.1",
71
+ "@progress/kendo-angular-pdf-export": "20.1.1-develop.1",
72
+ "@progress/kendo-angular-popup": "20.1.1-develop.1",
73
+ "@progress/kendo-angular-toolbar": "20.1.1-develop.1",
74
+ "@progress/kendo-angular-utils": "20.1.1-develop.1",
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.0",
79
+ "@progress/kendo-angular-schematics": "20.1.1-develop.1",
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.0',
8
- '@progress/kendo-angular-navigation': '20.1.0',
7
+ '@progress/kendo-angular-treeview': '20.1.1-develop.1',
8
+ '@progress/kendo-angular-navigation': '20.1.1-develop.1',
9
9
  // peer dependency of kendo-angular-inputs
10
- '@progress/kendo-angular-dialog': '20.1.0',
10
+ '@progress/kendo-angular-dialog': '20.1.1-develop.1',
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.0'
14
+ '@progress/kendo-angular-progressbar': '20.1.1-develop.1'
15
15
  } });
16
16
  return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
17
17
  }