@progress/kendo-angular-grid 14.3.0-develop.7 → 14.3.0-develop.9

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.
@@ -82,7 +82,7 @@ StringFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
82
82
  [filterDelay]="filterDelay"
83
83
  [ngModel]="currentFilter?.value"></kendo-textbox>
84
84
  </kendo-grid-filter-wrapper-cell>
85
- `, isInline: true, components: [{ type: i4.FilterCellWrapperComponent, selector: "kendo-grid-filter-wrapper-cell", inputs: ["showOperators"] }, { type: i5.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }], directives: [{ type: i6.FocusableDirective, selector: "[kendoGridFocusable],\n [kendoGridEditCommand],\n [kendoGridRemoveCommand],\n [kendoGridSaveCommand],\n [kendoGridCancelCommand],\n [kendoGridSelectionCheckbox]\n ", inputs: ["kendoGridFocusable"] }, { type: i7.FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "value"] }, { type: i8.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i8.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] });
85
+ `, isInline: true, components: [{ type: i4.FilterCellWrapperComponent, selector: "kendo-grid-filter-wrapper-cell", inputs: ["showOperators"] }, { type: i5.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }], directives: [{ type: i6.FocusableDirective, selector: "[kendoGridFocusable],\n [kendoGridEditCommand],\n [kendoGridRemoveCommand],\n [kendoGridSaveCommand],\n [kendoGridCancelCommand],\n [kendoGridSelectionCheckbox]\n ", inputs: ["kendoGridFocusable"] }, { type: i7.FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "value"] }, { type: i8.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i8.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] });
86
86
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StringFilterCellComponent, decorators: [{
87
87
  type: Component,
88
88
  args: [{
@@ -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: 1701794161,
13
- version: '14.3.0-develop.7',
12
+ publishDate: 1701953887,
13
+ version: '14.3.0-develop.9',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -25,6 +25,7 @@ import { CellSelectionService } from '../selection/cell-selection.service';
25
25
  import { minusIcon, plusIcon } from '@progress/kendo-svg-icons';
26
26
  import { ContextService } from '../common/provider.service';
27
27
  import { ColumnsContainer } from '../columns/columns-container';
28
+ import { SpanColumnComponent } from '../columns/span-column.component';
28
29
  import * as i0 from "@angular/core";
29
30
  import * as i1 from "./details/details.service";
30
31
  import * as i2 from "../grouping/groups.service";
@@ -280,7 +281,11 @@ export class TableBodyComponent {
280
281
  return this.columnsSpan + this.groups.length + (this.hasDetailTemplate ? 1 : 0);
281
282
  }
282
283
  get footerColumns() {
283
- return this.isLocked ? this.columnsContainer.lockedColumnsToRender : this.columnsContainer.nonLockedColumnsToRender;
284
+ const colsToRender = Array.from(this.columns).reduce((cols, col) => {
285
+ const newCols = (col instanceof SpanColumnComponent) ? Array.from(col.childColumns) : [col];
286
+ return [...cols, ...newCols];
287
+ }, []);
288
+ return colsToRender;
284
289
  }
285
290
  showGroupHeader(item) {
286
291
  return !item.data.skipHeader;
@@ -4475,8 +4475,8 @@ const packageMetadata = {
4475
4475
  name: '@progress/kendo-angular-grid',
4476
4476
  productName: 'Kendo UI for Angular',
4477
4477
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
4478
- publishDate: 1701794161,
4479
- version: '14.3.0-develop.7',
4478
+ publishDate: 1701953887,
4479
+ version: '14.3.0-develop.9',
4480
4480
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
4481
4481
  };
4482
4482
 
@@ -14261,7 +14261,7 @@ StringFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
14261
14261
  [filterDelay]="filterDelay"
14262
14262
  [ngModel]="currentFilter?.value"></kendo-textbox>
14263
14263
  </kendo-grid-filter-wrapper-cell>
14264
- `, isInline: true, components: [{ type: FilterCellWrapperComponent, selector: "kendo-grid-filter-wrapper-cell", inputs: ["showOperators"] }, { type: i3$1.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }], directives: [{ type: FocusableDirective, selector: "[kendoGridFocusable],\n [kendoGridEditCommand],\n [kendoGridRemoveCommand],\n [kendoGridSaveCommand],\n [kendoGridCancelCommand],\n [kendoGridSelectionCheckbox]\n ", inputs: ["kendoGridFocusable"] }, { type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "value"] }, { type: i4$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4$2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] });
14264
+ `, isInline: true, components: [{ type: FilterCellWrapperComponent, selector: "kendo-grid-filter-wrapper-cell", inputs: ["showOperators"] }, { type: i3$1.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }], directives: [{ type: FocusableDirective, selector: "[kendoGridFocusable],\n [kendoGridEditCommand],\n [kendoGridRemoveCommand],\n [kendoGridSaveCommand],\n [kendoGridCancelCommand],\n [kendoGridSelectionCheckbox]\n ", inputs: ["kendoGridFocusable"] }, { type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "value"] }, { type: i4$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4$2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] });
14265
14265
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StringFilterCellComponent, decorators: [{
14266
14266
  type: Component,
14267
14267
  args: [{
@@ -17611,7 +17611,11 @@ class TableBodyComponent {
17611
17611
  return this.columnsSpan + this.groups.length + (this.hasDetailTemplate ? 1 : 0);
17612
17612
  }
17613
17613
  get footerColumns() {
17614
- return this.isLocked ? this.columnsContainer.lockedColumnsToRender : this.columnsContainer.nonLockedColumnsToRender;
17614
+ const colsToRender = Array.from(this.columns).reduce((cols, col) => {
17615
+ const newCols = (col instanceof SpanColumnComponent) ? Array.from(col.childColumns) : [col];
17616
+ return [...cols, ...newCols];
17617
+ }, []);
17618
+ return colsToRender;
17615
17619
  }
17616
17620
  showGroupHeader(item) {
17617
17621
  return !item.data.skipHeader;
@@ -4443,8 +4443,8 @@ const packageMetadata = {
4443
4443
  name: '@progress/kendo-angular-grid',
4444
4444
  productName: 'Kendo UI for Angular',
4445
4445
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
4446
- publishDate: 1701794161,
4447
- version: '14.3.0-develop.7',
4446
+ publishDate: 1701953887,
4447
+ version: '14.3.0-develop.9',
4448
4448
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
4449
4449
  };
4450
4450
 
@@ -14189,7 +14189,7 @@ StringFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
14189
14189
  [filterDelay]="filterDelay"
14190
14190
  [ngModel]="currentFilter?.value"></kendo-textbox>
14191
14191
  </kendo-grid-filter-wrapper-cell>
14192
- `, isInline: true, components: [{ type: FilterCellWrapperComponent, selector: "kendo-grid-filter-wrapper-cell", inputs: ["showOperators"] }, { type: i3$1.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }], directives: [{ type: FocusableDirective, selector: "[kendoGridFocusable],\n [kendoGridEditCommand],\n [kendoGridRemoveCommand],\n [kendoGridSaveCommand],\n [kendoGridCancelCommand],\n [kendoGridSelectionCheckbox]\n ", inputs: ["kendoGridFocusable"] }, { type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "value"] }, { type: i4$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4$2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] });
14192
+ `, isInline: true, components: [{ type: FilterCellWrapperComponent, selector: "kendo-grid-filter-wrapper-cell", inputs: ["showOperators"] }, { type: i3$1.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }], directives: [{ type: FocusableDirective, selector: "[kendoGridFocusable],\n [kendoGridEditCommand],\n [kendoGridRemoveCommand],\n [kendoGridSaveCommand],\n [kendoGridCancelCommand],\n [kendoGridSelectionCheckbox]\n ", inputs: ["kendoGridFocusable"] }, { type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "value"] }, { type: i4$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4$2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] });
14193
14193
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StringFilterCellComponent, decorators: [{
14194
14194
  type: Component,
14195
14195
  args: [{
@@ -17529,7 +17529,11 @@ class TableBodyComponent {
17529
17529
  return this.columnsSpan + this.groups.length + (this.hasDetailTemplate ? 1 : 0);
17530
17530
  }
17531
17531
  get footerColumns() {
17532
- return this.isLocked ? this.columnsContainer.lockedColumnsToRender : this.columnsContainer.nonLockedColumnsToRender;
17532
+ const colsToRender = Array.from(this.columns).reduce((cols, col) => {
17533
+ const newCols = (col instanceof SpanColumnComponent) ? Array.from(col.childColumns) : [col];
17534
+ return [...cols, ...newCols];
17535
+ }, []);
17536
+ return colsToRender;
17533
17537
  }
17534
17538
  showGroupHeader(item) {
17535
17539
  return !item.data.skipHeader;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-grid",
3
- "version": "14.3.0-develop.7",
3
+ "version": "14.3.0-develop.9",
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.3.0-develop.7",
37
- "@progress/kendo-angular-common": "14.3.0-develop.7",
38
- "@progress/kendo-angular-dateinputs": "14.3.0-develop.7",
39
- "@progress/kendo-angular-layout": "14.3.0-develop.7",
40
- "@progress/kendo-angular-dropdowns": "14.3.0-develop.7",
41
- "@progress/kendo-angular-excel-export": "14.3.0-develop.7",
42
- "@progress/kendo-angular-icons": "14.3.0-develop.7",
43
- "@progress/kendo-angular-inputs": "14.3.0-develop.7",
44
- "@progress/kendo-angular-intl": "14.3.0-develop.7",
45
- "@progress/kendo-angular-l10n": "14.3.0-develop.7",
46
- "@progress/kendo-angular-label": "14.3.0-develop.7",
47
- "@progress/kendo-angular-pdf-export": "14.3.0-develop.7",
48
- "@progress/kendo-angular-popup": "14.3.0-develop.7",
49
- "@progress/kendo-angular-utils": "14.3.0-develop.7",
36
+ "@progress/kendo-angular-buttons": "14.3.0-develop.9",
37
+ "@progress/kendo-angular-common": "14.3.0-develop.9",
38
+ "@progress/kendo-angular-dateinputs": "14.3.0-develop.9",
39
+ "@progress/kendo-angular-layout": "14.3.0-develop.9",
40
+ "@progress/kendo-angular-dropdowns": "14.3.0-develop.9",
41
+ "@progress/kendo-angular-excel-export": "14.3.0-develop.9",
42
+ "@progress/kendo-angular-icons": "14.3.0-develop.9",
43
+ "@progress/kendo-angular-inputs": "14.3.0-develop.9",
44
+ "@progress/kendo-angular-intl": "14.3.0-develop.9",
45
+ "@progress/kendo-angular-l10n": "14.3.0-develop.9",
46
+ "@progress/kendo-angular-label": "14.3.0-develop.9",
47
+ "@progress/kendo-angular-pdf-export": "14.3.0-develop.9",
48
+ "@progress/kendo-angular-popup": "14.3.0-develop.9",
49
+ "@progress/kendo-angular-utils": "14.3.0-develop.9",
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.3.0-develop.7",
54
+ "@progress/kendo-angular-schematics": "14.3.0-develop.9",
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.3.0-develop.7',
7
+ '@progress/kendo-angular-treeview': '14.3.0-develop.9',
8
8
  // peer dependency of kendo-angular-inputs
9
- '@progress/kendo-angular-dialog': '14.3.0-develop.7',
9
+ '@progress/kendo-angular-dialog': '14.3.0-develop.9',
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.3.0-develop.7'
13
+ '@progress/kendo-angular-progressbar': '14.3.0-develop.9'
14
14
  } });
15
15
  return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
16
16
  }