@progress/kendo-angular-grid 23.2.1-develop.5 → 23.2.1-develop.7
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/databinding.directive.d.ts +0 -1
- package/fesm2022/progress-kendo-angular-grid.mjs +111 -35
- package/localization/messages.d.ts +15 -2
- package/package-metadata.mjs +2 -2
- package/package.json +24 -24
- package/rendering/header/header.component.d.ts +2 -2
- package/rendering/list.component.d.ts +8 -0
- package/schematics/ngAdd/index.js +7 -7
|
@@ -68,7 +68,6 @@ export declare class DataBindingDirective implements OnInit, OnDestroy, DoCheck,
|
|
|
68
68
|
protected originalData: any[];
|
|
69
69
|
protected dataChanged: boolean;
|
|
70
70
|
private stateChangeSubscription;
|
|
71
|
-
private gridStateChangeSubscription;
|
|
72
71
|
private dataChangedSubscription;
|
|
73
72
|
private rowReorderSubscription;
|
|
74
73
|
private searchSubscription;
|
|
@@ -6064,8 +6064,7 @@ class GroupHeaderComponent {
|
|
|
6064
6064
|
[colSpan]="logicalColSpan()">
|
|
6065
6065
|
<p class="k-reset">
|
|
6066
6066
|
@if (!skipGroupDecoration) {
|
|
6067
|
-
<a
|
|
6068
|
-
role="presentation"
|
|
6067
|
+
<a tabindex="-1" (click)="toggleGroup(item, $event)"
|
|
6069
6068
|
[attr.title]="groupButtonTitle"
|
|
6070
6069
|
[attr.aria-label]="groupButtonTitle">
|
|
6071
6070
|
<kendo-icon-wrapper
|
|
@@ -6167,8 +6166,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
6167
6166
|
[colSpan]="logicalColSpan()">
|
|
6168
6167
|
<p class="k-reset">
|
|
6169
6168
|
@if (!skipGroupDecoration) {
|
|
6170
|
-
<a
|
|
6171
|
-
role="presentation"
|
|
6169
|
+
<a tabindex="-1" (click)="toggleGroup(item, $event)"
|
|
6172
6170
|
[attr.title]="groupButtonTitle"
|
|
6173
6171
|
[attr.aria-label]="groupButtonTitle">
|
|
6174
6172
|
<kendo-icon-wrapper
|
|
@@ -11875,9 +11873,10 @@ class FilterMenuComponent {
|
|
|
11875
11873
|
[class.k-active]="hasFilters"
|
|
11876
11874
|
[tabindex]="tabIndex"
|
|
11877
11875
|
(click)="toggle(anchor, template)"
|
|
11878
|
-
(keydown.enter)="$event.stopImmediatePropagation()"
|
|
11879
|
-
|
|
11876
|
+
(keydown.enter)="toggle(anchor, template); $event.stopImmediatePropagation()"
|
|
11877
|
+
(keydown.space)="toggle(anchor, template); $event.preventDefault(); $event.stopImmediatePropagation()"
|
|
11880
11878
|
[attr.title]="filterLabel"
|
|
11879
|
+
[attr.role]="isNavigable ? undefined : 'button'"
|
|
11881
11880
|
[attr.aria-haspopup]="isNavigable ? undefined : 'dialog'"
|
|
11882
11881
|
[attr.aria-expanded]="isNavigable ? undefined : false">
|
|
11883
11882
|
<kendo-icon-wrapper
|
|
@@ -11905,9 +11904,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
11905
11904
|
[class.k-active]="hasFilters"
|
|
11906
11905
|
[tabindex]="tabIndex"
|
|
11907
11906
|
(click)="toggle(anchor, template)"
|
|
11908
|
-
(keydown.enter)="$event.stopImmediatePropagation()"
|
|
11909
|
-
|
|
11907
|
+
(keydown.enter)="toggle(anchor, template); $event.stopImmediatePropagation()"
|
|
11908
|
+
(keydown.space)="toggle(anchor, template); $event.preventDefault(); $event.stopImmediatePropagation()"
|
|
11910
11909
|
[attr.title]="filterLabel"
|
|
11910
|
+
[attr.role]="isNavigable ? undefined : 'button'"
|
|
11911
11911
|
[attr.aria-haspopup]="isNavigable ? undefined : 'dialog'"
|
|
11912
11912
|
[attr.aria-expanded]="isNavigable ? undefined : false">
|
|
11913
11913
|
<kendo-icon-wrapper
|
|
@@ -16314,10 +16314,11 @@ class ColumnMenuComponent {
|
|
|
16314
16314
|
class="k-grid-header-menu k-grid-column-menu"
|
|
16315
16315
|
[ngClass]="{ 'k-active': isActive }"
|
|
16316
16316
|
(click)="toggle($event, anchor, template)"
|
|
16317
|
-
(keydown.enter)="$event.stopImmediatePropagation()"
|
|
16318
|
-
|
|
16317
|
+
(keydown.enter)="toggle($event, anchor, template); $event.stopImmediatePropagation()"
|
|
16318
|
+
(keydown.space)="toggle($event, anchor, template); $event.preventDefault(); $event.stopImmediatePropagation()"
|
|
16319
16319
|
[tabindex]="tabIndex"
|
|
16320
16320
|
[attr.title]="columnMenuTitle"
|
|
16321
|
+
[attr.role]="isNavigable ? undefined : 'button'"
|
|
16321
16322
|
[attr.aria-expanded]="isNavigable ? undefined : false"
|
|
16322
16323
|
[attr.aria-haspopup]="isNavigable ? undefined : 'dialog'">
|
|
16323
16324
|
<kendo-icon-wrapper
|
|
@@ -16525,10 +16526,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
16525
16526
|
class="k-grid-header-menu k-grid-column-menu"
|
|
16526
16527
|
[ngClass]="{ 'k-active': isActive }"
|
|
16527
16528
|
(click)="toggle($event, anchor, template)"
|
|
16528
|
-
(keydown.enter)="$event.stopImmediatePropagation()"
|
|
16529
|
-
|
|
16529
|
+
(keydown.enter)="toggle($event, anchor, template); $event.stopImmediatePropagation()"
|
|
16530
|
+
(keydown.space)="toggle($event, anchor, template); $event.preventDefault(); $event.stopImmediatePropagation()"
|
|
16530
16531
|
[tabindex]="tabIndex"
|
|
16531
16532
|
[attr.title]="columnMenuTitle"
|
|
16533
|
+
[attr.role]="isNavigable ? undefined : 'button'"
|
|
16532
16534
|
[attr.aria-expanded]="isNavigable ? undefined : false"
|
|
16533
16535
|
[attr.aria-haspopup]="isNavigable ? undefined : 'dialog'">
|
|
16534
16536
|
<kendo-icon-wrapper
|
|
@@ -19966,9 +19968,6 @@ class HeaderComponent {
|
|
|
19966
19968
|
size;
|
|
19967
19969
|
sortedFields = {};
|
|
19968
19970
|
hostClass = true;
|
|
19969
|
-
get sortableLabel() {
|
|
19970
|
-
return this.contextService.localization.get('sortable');
|
|
19971
|
-
}
|
|
19972
19971
|
get columnMenuSettings() {
|
|
19973
19972
|
return this.columnMenu;
|
|
19974
19973
|
}
|
|
@@ -20176,8 +20175,8 @@ class HeaderComponent {
|
|
|
20176
20175
|
selectAllCheckboxId() {
|
|
20177
20176
|
return this.idService.selectAllCheckboxId();
|
|
20178
20177
|
}
|
|
20179
|
-
|
|
20180
|
-
return this.contextService.localization.get(
|
|
20178
|
+
messageFor(key) {
|
|
20179
|
+
return this.contextService.localization.get(key);
|
|
20181
20180
|
}
|
|
20182
20181
|
isFirstOnRow(column, index) {
|
|
20183
20182
|
const isTailing = (c) => c &&
|
|
@@ -20231,6 +20230,9 @@ class HeaderComponent {
|
|
|
20231
20230
|
isCheckboxColumn(column) {
|
|
20232
20231
|
return isCheckboxColumn(column) && !column.templateRef;
|
|
20233
20232
|
}
|
|
20233
|
+
isRowReorderColumn(column) {
|
|
20234
|
+
return isRowReorderColumn(column);
|
|
20235
|
+
}
|
|
20234
20236
|
addStickyStyles(column) {
|
|
20235
20237
|
const stickyStyles = this.columnInfoService.stickyColumnsStyles(column);
|
|
20236
20238
|
return { ...column.headerStyle, ...stickyStyles };
|
|
@@ -20371,8 +20373,9 @@ class HeaderComponent {
|
|
|
20371
20373
|
}
|
|
20372
20374
|
@if (detailTemplate?.templateRef && !isStacked) {
|
|
20373
20375
|
<th class="k-hierarchy-cell k-header k-table-th"
|
|
20374
|
-
role="
|
|
20376
|
+
role="columnheader"
|
|
20375
20377
|
>
|
|
20378
|
+
<span class="k-sr-only">{{messageFor('detailColumnHeaderLabel')}}</span>
|
|
20376
20379
|
</th>
|
|
20377
20380
|
}
|
|
20378
20381
|
@for (column of columnsForLevel(levelIndex); track $index; let columnIndex = $index; let last = $last) {
|
|
@@ -20464,7 +20467,7 @@ class HeaderComponent {
|
|
|
20464
20467
|
<span [class.k-sort-icon]="sortDescriptor(getColumnComponent(column).field).dir">
|
|
20465
20468
|
@if (sortDescriptor(getColumnComponent(column).field).dir) {
|
|
20466
20469
|
<kendo-icon-wrapper
|
|
20467
|
-
role="note" [attr.aria-label]="
|
|
20470
|
+
role="note" [attr.aria-label]="messageFor('sortable')"
|
|
20468
20471
|
name="sort-{{sortDescriptor(getColumnComponent(column).field).dir}}-small"
|
|
20469
20472
|
[svgIcon]="sortDescriptor(getColumnComponent(column).field).dir === 'asc' ? sortAscSmallIcon : sortDescSmallIcon"
|
|
20470
20473
|
></kendo-icon-wrapper>
|
|
@@ -20498,11 +20501,17 @@ class HeaderComponent {
|
|
|
20498
20501
|
@if (isCheckboxColumn(column) && !column.headerTemplateRef && $any(column).showSelectAll) {
|
|
20499
20502
|
<kendo-checkbox
|
|
20500
20503
|
[attr.id]="selectAllCheckboxId()"
|
|
20501
|
-
[inputAttributes]="{'aria-label': selectAllCheckboxLabel}"
|
|
20504
|
+
[inputAttributes]="{'aria-label': messageFor('selectAllCheckboxLabel')}"
|
|
20502
20505
|
kendoGridSelectAllCheckbox
|
|
20503
20506
|
kendoGridFocusable
|
|
20504
20507
|
></kendo-checkbox>
|
|
20505
20508
|
}
|
|
20509
|
+
@if (isCheckboxColumn(column) && !column.title && !column.headerTemplateRef && !$any(column).showSelectAll) {
|
|
20510
|
+
<span class="k-sr-only">{{messageFor('checkboxColumnHeaderLabel')}}</span>
|
|
20511
|
+
}
|
|
20512
|
+
@if (isRowReorderColumn(column) && !column.title && !column.headerTemplateRef) {
|
|
20513
|
+
<span class="k-sr-only">{{messageFor('dragColumnHeaderLabel')}}</span>
|
|
20514
|
+
}
|
|
20506
20515
|
@if (resizable) {
|
|
20507
20516
|
<span kendoGridColumnHandle
|
|
20508
20517
|
kendoDraggable
|
|
@@ -20620,8 +20629,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
20620
20629
|
}
|
|
20621
20630
|
@if (detailTemplate?.templateRef && !isStacked) {
|
|
20622
20631
|
<th class="k-hierarchy-cell k-header k-table-th"
|
|
20623
|
-
role="
|
|
20632
|
+
role="columnheader"
|
|
20624
20633
|
>
|
|
20634
|
+
<span class="k-sr-only">{{messageFor('detailColumnHeaderLabel')}}</span>
|
|
20625
20635
|
</th>
|
|
20626
20636
|
}
|
|
20627
20637
|
@for (column of columnsForLevel(levelIndex); track $index; let columnIndex = $index; let last = $last) {
|
|
@@ -20713,7 +20723,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
20713
20723
|
<span [class.k-sort-icon]="sortDescriptor(getColumnComponent(column).field).dir">
|
|
20714
20724
|
@if (sortDescriptor(getColumnComponent(column).field).dir) {
|
|
20715
20725
|
<kendo-icon-wrapper
|
|
20716
|
-
role="note" [attr.aria-label]="
|
|
20726
|
+
role="note" [attr.aria-label]="messageFor('sortable')"
|
|
20717
20727
|
name="sort-{{sortDescriptor(getColumnComponent(column).field).dir}}-small"
|
|
20718
20728
|
[svgIcon]="sortDescriptor(getColumnComponent(column).field).dir === 'asc' ? sortAscSmallIcon : sortDescSmallIcon"
|
|
20719
20729
|
></kendo-icon-wrapper>
|
|
@@ -20747,11 +20757,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
20747
20757
|
@if (isCheckboxColumn(column) && !column.headerTemplateRef && $any(column).showSelectAll) {
|
|
20748
20758
|
<kendo-checkbox
|
|
20749
20759
|
[attr.id]="selectAllCheckboxId()"
|
|
20750
|
-
[inputAttributes]="{'aria-label': selectAllCheckboxLabel}"
|
|
20760
|
+
[inputAttributes]="{'aria-label': messageFor('selectAllCheckboxLabel')}"
|
|
20751
20761
|
kendoGridSelectAllCheckbox
|
|
20752
20762
|
kendoGridFocusable
|
|
20753
20763
|
></kendo-checkbox>
|
|
20754
20764
|
}
|
|
20765
|
+
@if (isCheckboxColumn(column) && !column.title && !column.headerTemplateRef && !$any(column).showSelectAll) {
|
|
20766
|
+
<span class="k-sr-only">{{messageFor('checkboxColumnHeaderLabel')}}</span>
|
|
20767
|
+
}
|
|
20768
|
+
@if (isRowReorderColumn(column) && !column.title && !column.headerTemplateRef) {
|
|
20769
|
+
<span class="k-sr-only">{{messageFor('dragColumnHeaderLabel')}}</span>
|
|
20770
|
+
}
|
|
20755
20771
|
@if (resizable) {
|
|
20756
20772
|
<span kendoGridColumnHandle
|
|
20757
20773
|
kendoDraggable
|
|
@@ -22819,7 +22835,7 @@ class TableBodyComponent {
|
|
|
22819
22835
|
<a
|
|
22820
22836
|
[attr.title]="detailButtonTitle(item)"
|
|
22821
22837
|
[attr.aria-label]="detailButtonTitle(item)"
|
|
22822
|
-
|
|
22838
|
+
tabindex="-1" (click)="toggleRow($any(item).index, item.data)">
|
|
22823
22839
|
<kendo-icon-wrapper
|
|
22824
22840
|
[name]="detailButtonIconName(item)"
|
|
22825
22841
|
[svgIcon]="detailButtonSvgIcon(item)"></kendo-icon-wrapper>
|
|
@@ -23168,7 +23184,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
23168
23184
|
<a
|
|
23169
23185
|
[attr.title]="detailButtonTitle(item)"
|
|
23170
23186
|
[attr.aria-label]="detailButtonTitle(item)"
|
|
23171
|
-
|
|
23187
|
+
tabindex="-1" (click)="toggleRow($any(item).index, item.data)">
|
|
23172
23188
|
<kendo-icon-wrapper
|
|
23173
23189
|
[name]="detailButtonIconName(item)"
|
|
23174
23190
|
[svgIcon]="detailButtonSvgIcon(item)"></kendo-icon-wrapper>
|
|
@@ -24215,7 +24231,7 @@ const packageMetadata = {
|
|
|
24215
24231
|
productCode: 'KENDOUIANGULAR',
|
|
24216
24232
|
productCodes: ['KENDOUIANGULAR'],
|
|
24217
24233
|
publishDate: 0,
|
|
24218
|
-
version: '23.2.1-develop.
|
|
24234
|
+
version: '23.2.1-develop.7',
|
|
24219
24235
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
24220
24236
|
};
|
|
24221
24237
|
|
|
@@ -27754,6 +27770,35 @@ class ListComponent {
|
|
|
27754
27770
|
this.setScrollerOptions();
|
|
27755
27771
|
this.ngZone.runOutsideAngular(this.createScroller.bind(this));
|
|
27756
27772
|
}
|
|
27773
|
+
/**
|
|
27774
|
+
* After a column resize, rows may become shorter due to reduced text wrapping, leaving empty
|
|
27775
|
+
* space at the bottom of the viewport. Expands `itemsToRender` to fill the gap using
|
|
27776
|
+
* already-loaded data. Must be called after `scroller.update()` so that the row height
|
|
27777
|
+
* service reflects the new actual row heights.
|
|
27778
|
+
* @hidden
|
|
27779
|
+
*/
|
|
27780
|
+
fillViewportAfterColumnChange() {
|
|
27781
|
+
if (!this.isVirtual || !this.container || !this.scroller?.rowHeightService || !this.virtualPageSize) {
|
|
27782
|
+
return;
|
|
27783
|
+
}
|
|
27784
|
+
// For non-pageable non-grouped virtual, itemsToRender always equals allItems — no gap possible
|
|
27785
|
+
if (!this.ctx.grid?.pageable && !this.ctx.grid?.group?.length) {
|
|
27786
|
+
return;
|
|
27787
|
+
}
|
|
27788
|
+
const { scrollTop, offsetHeight } = this.container.nativeElement;
|
|
27789
|
+
if (!offsetHeight || !this.allItems.length) {
|
|
27790
|
+
return;
|
|
27791
|
+
}
|
|
27792
|
+
const lastVisibleIndex = this.scroller.rowHeightService.index(scrollTop + offsetHeight);
|
|
27793
|
+
const currentRenderedEnd = this.scroller.virtualSkip + this.itemsToRender.length;
|
|
27794
|
+
if (lastVisibleIndex < currentRenderedEnd) {
|
|
27795
|
+
return;
|
|
27796
|
+
}
|
|
27797
|
+
const newEnd = Math.min(lastVisibleIndex + 1, this.allItems.length);
|
|
27798
|
+
if (newEnd > currentRenderedEnd) {
|
|
27799
|
+
this.itemsToRender = this.allItems.slice(this.scroller.virtualSkip, newEnd);
|
|
27800
|
+
}
|
|
27801
|
+
}
|
|
27757
27802
|
/**
|
|
27758
27803
|
* Checks if the virtual scroll state is out of sync with the expected position.
|
|
27759
27804
|
* Used to determine if resetVirtualScroll should be called.
|
|
@@ -28949,7 +28994,8 @@ class GridMessages extends ComponentMessages {
|
|
|
28949
28994
|
*/
|
|
28950
28995
|
filterToolbarToolText;
|
|
28951
28996
|
/**
|
|
28952
|
-
* Sets the
|
|
28997
|
+
* Sets the text to convey to assistive technologies while the Grid is loading.
|
|
28998
|
+
* The `loading` property represents a Grid accessibility feature.
|
|
28953
28999
|
* Screen readers can detect its value, but it is not visible otherwise.
|
|
28954
29000
|
*/
|
|
28955
29001
|
loading;
|
|
@@ -29121,6 +29167,10 @@ class GridMessages extends ComponentMessages {
|
|
|
29121
29167
|
* Sets the label for the select all checkbox in the checkbox column.
|
|
29122
29168
|
*/
|
|
29123
29169
|
selectAllCheckboxLabel;
|
|
29170
|
+
/**
|
|
29171
|
+
* Sets the screen-reader-only content for the checkbox column header when the select-all checkbox is not displayed.
|
|
29172
|
+
*/
|
|
29173
|
+
checkboxColumnHeaderLabel;
|
|
29124
29174
|
/**
|
|
29125
29175
|
* Sets the text for the title and `aria-label` attributes on the collapse icon of group rows.
|
|
29126
29176
|
*/
|
|
@@ -29333,8 +29383,16 @@ class GridMessages extends ComponentMessages {
|
|
|
29333
29383
|
* The text for the AI Assistant mode button in the SmartBox tool popup.
|
|
29334
29384
|
*/
|
|
29335
29385
|
smartBoxAIAssistantModePopupButton;
|
|
29386
|
+
/**
|
|
29387
|
+
* Sets the screen-reader-only content for the detail expand/collapse column header.
|
|
29388
|
+
*/
|
|
29389
|
+
detailColumnHeaderLabel;
|
|
29390
|
+
/**
|
|
29391
|
+
* Sets the screen-reader-only content for the row reorder column header.
|
|
29392
|
+
*/
|
|
29393
|
+
dragColumnHeaderLabel;
|
|
29336
29394
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GridMessages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
29337
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: GridMessages, isStandalone: true, selector: "kendo-grid-messages-base", inputs: { groupPanelEmpty: "groupPanelEmpty", noRecords: "noRecords", pagerLabel: "pagerLabel", pagerFirstPage: "pagerFirstPage", pagerLastPage: "pagerLastPage", pagerPreviousPage: "pagerPreviousPage", pagerNextPage: "pagerNextPage", pagerPage: "pagerPage", pagerItemsPerPage: "pagerItemsPerPage", pagerOf: "pagerOf", pagerItems: "pagerItems", pagerPageNumberInputTitle: "pagerPageNumberInputTitle", pagerInputLabel: "pagerInputLabel", pagerSelectPage: "pagerSelectPage", filter: "filter", filterInputLabel: "filterInputLabel", filterMenuTitle: "filterMenuTitle", filterMenuOperatorsDropDownLabel: "filterMenuOperatorsDropDownLabel", filterMenuLogicDropDownLabel: "filterMenuLogicDropDownLabel", filterCellOperatorLabel: "filterCellOperatorLabel", booleanFilterCellLabel: "booleanFilterCellLabel", aiAssistantApplyButtonText: "aiAssistantApplyButtonText", aiAssistantToolbarToolText: "aiAssistantToolbarToolText", aiAssistantWindowTitle: "aiAssistantWindowTitle", aiAssistantWindowCloseTitle: "aiAssistantWindowCloseTitle", aiAssistantOutputCardTitle: "aiAssistantOutputCardTitle", aiAssistantOutputCardBodyContent: "aiAssistantOutputCardBodyContent", aiAssistantSelectionNotEnabled: "aiAssistantSelectionNotEnabled", aiAssistantSelectionRowModeRequired: "aiAssistantSelectionRowModeRequired", aiAssistantSelectionCellModeRequired: "aiAssistantSelectionCellModeRequired", aiAssistantWindowMaximizeTitle: "aiAssistantWindowMaximizeTitle", aiAssistantWindowMinimizeTitle: "aiAssistantWindowMinimizeTitle", aiAssistantWindowRestoreTitle: "aiAssistantWindowRestoreTitle", filterEqOperator: "filterEqOperator", filterNotEqOperator: "filterNotEqOperator", filterIsNullOperator: "filterIsNullOperator", filterIsNotNullOperator: "filterIsNotNullOperator", filterIsEmptyOperator: "filterIsEmptyOperator", filterIsNotEmptyOperator: "filterIsNotEmptyOperator", filterStartsWithOperator: "filterStartsWithOperator", filterContainsOperator: "filterContainsOperator", filterNotContainsOperator: "filterNotContainsOperator", filterEndsWithOperator: "filterEndsWithOperator", filterGteOperator: "filterGteOperator", filterGtOperator: "filterGtOperator", filterLteOperator: "filterLteOperator", filterLtOperator: "filterLtOperator", filterIsTrue: "filterIsTrue", filterIsFalse: "filterIsFalse", filterBooleanAll: "filterBooleanAll", adaptiveFilterOperatorsTitle: "adaptiveFilterOperatorsTitle", filterAfterOrEqualOperator: "filterAfterOrEqualOperator", filterAfterOperator: "filterAfterOperator", filterBeforeOperator: "filterBeforeOperator", filterBeforeOrEqualOperator: "filterBeforeOrEqualOperator", filterFilterButton: "filterFilterButton", filterClearButton: "filterClearButton", adaptiveCloseButtonTitle: "adaptiveCloseButtonTitle", adaptiveBackButtonTitle: "adaptiveBackButtonTitle", filterAndLogic: "filterAndLogic", filterOrLogic: "filterOrLogic", filterToolbarToolText: "filterToolbarToolText", loading: "loading", gridLabel: "gridLabel", columnMenu: "columnMenu", setColumnPosition: "setColumnPosition", columns: "columns", columnChooserSelectAll: "columnChooserSelectAll", columnChooserSearchLabel: "columnChooserSearchLabel", columnChooserSelectedColumnsCount: "columnChooserSelectedColumnsCount", columnsSubtitle: "columnsSubtitle", adaptiveFilterTitle: "adaptiveFilterTitle", adaptiveSortTitle: "adaptiveSortTitle", adaptiveGroupTitle: "adaptiveGroupTitle", filterClearAllButton: "filterClearAllButton", groupClearButton: "groupClearButton", sortClearButton: "sortClearButton", sortDoneButton: "sortDoneButton", groupDoneButton: "groupDoneButton", lock: "lock", unlock: "unlock", stick: "stick", unstick: "unstick", sortable: "sortable", sortAscending: "sortAscending", sortDescending: "sortDescending", autosizeThisColumn: "autosizeThisColumn", autosizeAllColumns: "autosizeAllColumns", sortedAscending: "sortedAscending", sortedDescending: "sortedDescending", sortedDefault: "sortedDefault", sortToolbarToolText: "sortToolbarToolText", columnsApply: "columnsApply", columnsReset: "columnsReset", detailExpand: "detailExpand", detailCollapse: "detailCollapse", filterDateToday: "filterDateToday", filterDateToggle: "filterDateToggle", filterNumericDecrement: "filterNumericDecrement", filterNumericIncrement: "filterNumericIncrement", selectionCheckboxLabel: "selectionCheckboxLabel", selectAllCheckboxLabel: "selectAllCheckboxLabel", groupCollapse: "groupCollapse", groupExpand: "groupExpand", topToolbarLabel: "topToolbarLabel", bottomToolbarLabel: "bottomToolbarLabel", editToolbarToolText: "editToolbarToolText", saveToolbarToolText: "saveToolbarToolText", addToolbarToolText: "addToolbarToolText", cancelToolbarToolText: "cancelToolbarToolText", removeToolbarToolText: "removeToolbarToolText", excelExportToolbarToolText: "excelExportToolbarToolText", csvExportToolbarToolText: "csvExportToolbarToolText", pdfExportToolbarToolText: "pdfExportToolbarToolText", groupPanelLabel: "groupPanelLabel", dragRowHandleLabel: "dragRowHandleLabel", columnMenuFilterTabTitle: "columnMenuFilterTabTitle", columnMenuGeneralTabTitle: "columnMenuGeneralTabTitle", columnMenuColumnsTabTitle: "columnMenuColumnsTabTitle", groupChipMenuPrevious: "groupChipMenuPrevious", groupChipMenuNext: "groupChipMenuNext", groupToolbarToolText: "groupToolbarToolText", formValidationErrorText: "formValidationErrorText", removeConfirmationDialogTitle: "removeConfirmationDialogTitle", removeConfirmationDialogContent: "removeConfirmationDialogContent", removeConfirmationDialogConfirmText: "removeConfirmationDialogConfirmText", removeConfirmationDialogRejectText: "removeConfirmationDialogRejectText", externalEditingTitle: "externalEditingTitle", externalEditingAddTitle: "externalEditingAddTitle", externalEditingSaveText: "externalEditingSaveText", externalEditingCancelText: "externalEditingCancelText", multiCheckboxFilterSearchPlaceholder: "multiCheckboxFilterSearchPlaceholder", multiCheckboxFilterSelectAllLabel: "multiCheckboxFilterSelectAllLabel", multiCheckboxFilterSelectedItemsCount: "multiCheckboxFilterSelectedItemsCount", smartBoxSpeechToTextButton: "smartBoxSpeechToTextButton", smartBoxSubmitPromptButton: "smartBoxSubmitPromptButton", smartBoxSearchPlaceholder: "smartBoxSearchPlaceholder", smartBoxSemanticSearchPlaceholder: "smartBoxSemanticSearchPlaceholder", smartBoxAIAssistantPlaceholder: "smartBoxAIAssistantPlaceholder", smartBoxSuggestedPrompts: "smartBoxSuggestedPrompts", smartBoxNoPreviousSearches: "smartBoxNoPreviousSearches", smartBoxNoPreviousPrompts: "smartBoxNoPreviousPrompts", smartBoxPreviouslySearched: "smartBoxPreviouslySearched", smartBoxPreviouslyAsked: "smartBoxPreviouslyAsked", searchModeListItemText: "searchModeListItemText", searchModeListItemDescription: "searchModeListItemDescription", semanticSearchModeListItemText: "semanticSearchModeListItemText", semanticSearchModeListItemDescription: "semanticSearchModeListItemDescription", smartBoxSearchModePopupButton: "smartBoxSearchModePopupButton", smartBoxAIAssistantModePopupButton: "smartBoxAIAssistantModePopupButton" }, usesInheritance: true, ngImport: i0 });
|
|
29395
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: GridMessages, isStandalone: true, selector: "kendo-grid-messages-base", inputs: { groupPanelEmpty: "groupPanelEmpty", noRecords: "noRecords", pagerLabel: "pagerLabel", pagerFirstPage: "pagerFirstPage", pagerLastPage: "pagerLastPage", pagerPreviousPage: "pagerPreviousPage", pagerNextPage: "pagerNextPage", pagerPage: "pagerPage", pagerItemsPerPage: "pagerItemsPerPage", pagerOf: "pagerOf", pagerItems: "pagerItems", pagerPageNumberInputTitle: "pagerPageNumberInputTitle", pagerInputLabel: "pagerInputLabel", pagerSelectPage: "pagerSelectPage", filter: "filter", filterInputLabel: "filterInputLabel", filterMenuTitle: "filterMenuTitle", filterMenuOperatorsDropDownLabel: "filterMenuOperatorsDropDownLabel", filterMenuLogicDropDownLabel: "filterMenuLogicDropDownLabel", filterCellOperatorLabel: "filterCellOperatorLabel", booleanFilterCellLabel: "booleanFilterCellLabel", aiAssistantApplyButtonText: "aiAssistantApplyButtonText", aiAssistantToolbarToolText: "aiAssistantToolbarToolText", aiAssistantWindowTitle: "aiAssistantWindowTitle", aiAssistantWindowCloseTitle: "aiAssistantWindowCloseTitle", aiAssistantOutputCardTitle: "aiAssistantOutputCardTitle", aiAssistantOutputCardBodyContent: "aiAssistantOutputCardBodyContent", aiAssistantSelectionNotEnabled: "aiAssistantSelectionNotEnabled", aiAssistantSelectionRowModeRequired: "aiAssistantSelectionRowModeRequired", aiAssistantSelectionCellModeRequired: "aiAssistantSelectionCellModeRequired", aiAssistantWindowMaximizeTitle: "aiAssistantWindowMaximizeTitle", aiAssistantWindowMinimizeTitle: "aiAssistantWindowMinimizeTitle", aiAssistantWindowRestoreTitle: "aiAssistantWindowRestoreTitle", filterEqOperator: "filterEqOperator", filterNotEqOperator: "filterNotEqOperator", filterIsNullOperator: "filterIsNullOperator", filterIsNotNullOperator: "filterIsNotNullOperator", filterIsEmptyOperator: "filterIsEmptyOperator", filterIsNotEmptyOperator: "filterIsNotEmptyOperator", filterStartsWithOperator: "filterStartsWithOperator", filterContainsOperator: "filterContainsOperator", filterNotContainsOperator: "filterNotContainsOperator", filterEndsWithOperator: "filterEndsWithOperator", filterGteOperator: "filterGteOperator", filterGtOperator: "filterGtOperator", filterLteOperator: "filterLteOperator", filterLtOperator: "filterLtOperator", filterIsTrue: "filterIsTrue", filterIsFalse: "filterIsFalse", filterBooleanAll: "filterBooleanAll", adaptiveFilterOperatorsTitle: "adaptiveFilterOperatorsTitle", filterAfterOrEqualOperator: "filterAfterOrEqualOperator", filterAfterOperator: "filterAfterOperator", filterBeforeOperator: "filterBeforeOperator", filterBeforeOrEqualOperator: "filterBeforeOrEqualOperator", filterFilterButton: "filterFilterButton", filterClearButton: "filterClearButton", adaptiveCloseButtonTitle: "adaptiveCloseButtonTitle", adaptiveBackButtonTitle: "adaptiveBackButtonTitle", filterAndLogic: "filterAndLogic", filterOrLogic: "filterOrLogic", filterToolbarToolText: "filterToolbarToolText", loading: "loading", gridLabel: "gridLabel", columnMenu: "columnMenu", setColumnPosition: "setColumnPosition", columns: "columns", columnChooserSelectAll: "columnChooserSelectAll", columnChooserSearchLabel: "columnChooserSearchLabel", columnChooserSelectedColumnsCount: "columnChooserSelectedColumnsCount", columnsSubtitle: "columnsSubtitle", adaptiveFilterTitle: "adaptiveFilterTitle", adaptiveSortTitle: "adaptiveSortTitle", adaptiveGroupTitle: "adaptiveGroupTitle", filterClearAllButton: "filterClearAllButton", groupClearButton: "groupClearButton", sortClearButton: "sortClearButton", sortDoneButton: "sortDoneButton", groupDoneButton: "groupDoneButton", lock: "lock", unlock: "unlock", stick: "stick", unstick: "unstick", sortable: "sortable", sortAscending: "sortAscending", sortDescending: "sortDescending", autosizeThisColumn: "autosizeThisColumn", autosizeAllColumns: "autosizeAllColumns", sortedAscending: "sortedAscending", sortedDescending: "sortedDescending", sortedDefault: "sortedDefault", sortToolbarToolText: "sortToolbarToolText", columnsApply: "columnsApply", columnsReset: "columnsReset", detailExpand: "detailExpand", detailCollapse: "detailCollapse", filterDateToday: "filterDateToday", filterDateToggle: "filterDateToggle", filterNumericDecrement: "filterNumericDecrement", filterNumericIncrement: "filterNumericIncrement", selectionCheckboxLabel: "selectionCheckboxLabel", selectAllCheckboxLabel: "selectAllCheckboxLabel", checkboxColumnHeaderLabel: "checkboxColumnHeaderLabel", groupCollapse: "groupCollapse", groupExpand: "groupExpand", topToolbarLabel: "topToolbarLabel", bottomToolbarLabel: "bottomToolbarLabel", editToolbarToolText: "editToolbarToolText", saveToolbarToolText: "saveToolbarToolText", addToolbarToolText: "addToolbarToolText", cancelToolbarToolText: "cancelToolbarToolText", removeToolbarToolText: "removeToolbarToolText", excelExportToolbarToolText: "excelExportToolbarToolText", csvExportToolbarToolText: "csvExportToolbarToolText", pdfExportToolbarToolText: "pdfExportToolbarToolText", groupPanelLabel: "groupPanelLabel", dragRowHandleLabel: "dragRowHandleLabel", columnMenuFilterTabTitle: "columnMenuFilterTabTitle", columnMenuGeneralTabTitle: "columnMenuGeneralTabTitle", columnMenuColumnsTabTitle: "columnMenuColumnsTabTitle", groupChipMenuPrevious: "groupChipMenuPrevious", groupChipMenuNext: "groupChipMenuNext", groupToolbarToolText: "groupToolbarToolText", formValidationErrorText: "formValidationErrorText", removeConfirmationDialogTitle: "removeConfirmationDialogTitle", removeConfirmationDialogContent: "removeConfirmationDialogContent", removeConfirmationDialogConfirmText: "removeConfirmationDialogConfirmText", removeConfirmationDialogRejectText: "removeConfirmationDialogRejectText", externalEditingTitle: "externalEditingTitle", externalEditingAddTitle: "externalEditingAddTitle", externalEditingSaveText: "externalEditingSaveText", externalEditingCancelText: "externalEditingCancelText", multiCheckboxFilterSearchPlaceholder: "multiCheckboxFilterSearchPlaceholder", multiCheckboxFilterSelectAllLabel: "multiCheckboxFilterSelectAllLabel", multiCheckboxFilterSelectedItemsCount: "multiCheckboxFilterSelectedItemsCount", smartBoxSpeechToTextButton: "smartBoxSpeechToTextButton", smartBoxSubmitPromptButton: "smartBoxSubmitPromptButton", smartBoxSearchPlaceholder: "smartBoxSearchPlaceholder", smartBoxSemanticSearchPlaceholder: "smartBoxSemanticSearchPlaceholder", smartBoxAIAssistantPlaceholder: "smartBoxAIAssistantPlaceholder", smartBoxSuggestedPrompts: "smartBoxSuggestedPrompts", smartBoxNoPreviousSearches: "smartBoxNoPreviousSearches", smartBoxNoPreviousPrompts: "smartBoxNoPreviousPrompts", smartBoxPreviouslySearched: "smartBoxPreviouslySearched", smartBoxPreviouslyAsked: "smartBoxPreviouslyAsked", searchModeListItemText: "searchModeListItemText", searchModeListItemDescription: "searchModeListItemDescription", semanticSearchModeListItemText: "semanticSearchModeListItemText", semanticSearchModeListItemDescription: "semanticSearchModeListItemDescription", smartBoxSearchModePopupButton: "smartBoxSearchModePopupButton", smartBoxAIAssistantModePopupButton: "smartBoxAIAssistantModePopupButton", detailColumnHeaderLabel: "detailColumnHeaderLabel", dragColumnHeaderLabel: "dragColumnHeaderLabel" }, usesInheritance: true, ngImport: i0 });
|
|
29338
29396
|
}
|
|
29339
29397
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: GridMessages, decorators: [{
|
|
29340
29398
|
type: Directive,
|
|
@@ -29545,6 +29603,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
29545
29603
|
type: Input
|
|
29546
29604
|
}], selectAllCheckboxLabel: [{
|
|
29547
29605
|
type: Input
|
|
29606
|
+
}], checkboxColumnHeaderLabel: [{
|
|
29607
|
+
type: Input
|
|
29548
29608
|
}], groupCollapse: [{
|
|
29549
29609
|
type: Input
|
|
29550
29610
|
}], groupExpand: [{
|
|
@@ -29641,6 +29701,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
29641
29701
|
type: Input
|
|
29642
29702
|
}], smartBoxAIAssistantModePopupButton: [{
|
|
29643
29703
|
type: Input
|
|
29704
|
+
}], detailColumnHeaderLabel: [{
|
|
29705
|
+
type: Input
|
|
29706
|
+
}], dragColumnHeaderLabel: [{
|
|
29707
|
+
type: Input
|
|
29644
29708
|
}] } });
|
|
29645
29709
|
|
|
29646
29710
|
/**
|
|
@@ -34371,6 +34435,7 @@ class GridComponent {
|
|
|
34371
34435
|
hasObservers(this.gridStateChange) && this.gridStateChange.emit(this.currentState);
|
|
34372
34436
|
if (this.isVirtual) {
|
|
34373
34437
|
this.ctx.scroller?.update();
|
|
34438
|
+
this.listComponent?.fillViewportAfterColumnChange();
|
|
34374
34439
|
this.listComponent?.resetNavigationViewport();
|
|
34375
34440
|
}
|
|
34376
34441
|
})));
|
|
@@ -35192,6 +35257,15 @@ class GridComponent {
|
|
|
35192
35257
|
|
|
35193
35258
|
i18n-smartBoxAIAssistantModePopupButton="kendo.grid.smartBoxAIAssistantModePopupButton|The text for the AI Assistant mode button in the SmartBox tool popup."
|
|
35194
35259
|
smartBoxAIAssistantModePopupButton="AI Assistant"
|
|
35260
|
+
|
|
35261
|
+
i18n-detailColumnHeaderLabel="kendo.grid.detailColumnHeaderLabel|The screen-reader-only content for the detail expand/collapse column header"
|
|
35262
|
+
detailColumnHeaderLabel="Details Toggle"
|
|
35263
|
+
|
|
35264
|
+
i18n-dragColumnHeaderLabel="kendo.grid.dragColumnHeaderLabel|The screen-reader-only content for the row reorder column header"
|
|
35265
|
+
dragColumnHeaderLabel="Row reorder"
|
|
35266
|
+
|
|
35267
|
+
i18n-checkboxColumnHeaderLabel="kendo.grid.checkboxColumnHeaderLabel|The screen-reader-only content for the checkbox column header"
|
|
35268
|
+
checkboxColumnHeaderLabel="Selection"
|
|
35195
35269
|
>
|
|
35196
35270
|
</ng-container>
|
|
35197
35271
|
@if (showTopToolbar) {
|
|
@@ -36172,6 +36246,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
36172
36246
|
|
|
36173
36247
|
i18n-smartBoxAIAssistantModePopupButton="kendo.grid.smartBoxAIAssistantModePopupButton|The text for the AI Assistant mode button in the SmartBox tool popup."
|
|
36174
36248
|
smartBoxAIAssistantModePopupButton="AI Assistant"
|
|
36249
|
+
|
|
36250
|
+
i18n-detailColumnHeaderLabel="kendo.grid.detailColumnHeaderLabel|The screen-reader-only content for the detail expand/collapse column header"
|
|
36251
|
+
detailColumnHeaderLabel="Details Toggle"
|
|
36252
|
+
|
|
36253
|
+
i18n-dragColumnHeaderLabel="kendo.grid.dragColumnHeaderLabel|The screen-reader-only content for the row reorder column header"
|
|
36254
|
+
dragColumnHeaderLabel="Row reorder"
|
|
36255
|
+
|
|
36256
|
+
i18n-checkboxColumnHeaderLabel="kendo.grid.checkboxColumnHeaderLabel|The screen-reader-only content for the checkbox column header"
|
|
36257
|
+
checkboxColumnHeaderLabel="Selection"
|
|
36175
36258
|
>
|
|
36176
36259
|
</ng-container>
|
|
36177
36260
|
@if (showTopToolbar) {
|
|
@@ -37021,7 +37104,6 @@ class DataBindingDirective {
|
|
|
37021
37104
|
originalData = [];
|
|
37022
37105
|
dataChanged;
|
|
37023
37106
|
stateChangeSubscription;
|
|
37024
|
-
gridStateChangeSubscription;
|
|
37025
37107
|
dataChangedSubscription;
|
|
37026
37108
|
rowReorderSubscription;
|
|
37027
37109
|
searchSubscription;
|
|
@@ -37045,9 +37127,6 @@ class DataBindingDirective {
|
|
|
37045
37127
|
this.stateChangeSubscription = this.grid
|
|
37046
37128
|
.dataStateChange
|
|
37047
37129
|
.subscribe(this.onStateChange.bind(this));
|
|
37048
|
-
this.gridStateChangeSubscription = this.grid
|
|
37049
|
-
.gridStateChange
|
|
37050
|
-
.subscribe(this.onStateChange.bind(this));
|
|
37051
37130
|
if (this.rowReorderService) {
|
|
37052
37131
|
this.rowReorderSubscription = this.grid
|
|
37053
37132
|
.rowReorder
|
|
@@ -37077,9 +37156,6 @@ class DataBindingDirective {
|
|
|
37077
37156
|
if (this.searchSubscription) {
|
|
37078
37157
|
this.searchSubscription.unsubscribe();
|
|
37079
37158
|
}
|
|
37080
|
-
if (this.gridStateChangeSubscription) {
|
|
37081
|
-
this.gridStateChangeSubscription.unsubscribe();
|
|
37082
|
-
}
|
|
37083
37159
|
}
|
|
37084
37160
|
ngOnChanges(changes) {
|
|
37085
37161
|
if (anyChanged(["pageSize", "skip", "sort", "group", "filter"], changes)) {
|
|
@@ -306,7 +306,8 @@ export declare class GridMessages extends ComponentMessages {
|
|
|
306
306
|
*/
|
|
307
307
|
filterToolbarToolText: string;
|
|
308
308
|
/**
|
|
309
|
-
* Sets the
|
|
309
|
+
* Sets the text to convey to assistive technologies while the Grid is loading.
|
|
310
|
+
* The `loading` property represents a Grid accessibility feature.
|
|
310
311
|
* Screen readers can detect its value, but it is not visible otherwise.
|
|
311
312
|
*/
|
|
312
313
|
loading: string;
|
|
@@ -478,6 +479,10 @@ export declare class GridMessages extends ComponentMessages {
|
|
|
478
479
|
* Sets the label for the select all checkbox in the checkbox column.
|
|
479
480
|
*/
|
|
480
481
|
selectAllCheckboxLabel: string;
|
|
482
|
+
/**
|
|
483
|
+
* Sets the screen-reader-only content for the checkbox column header when the select-all checkbox is not displayed.
|
|
484
|
+
*/
|
|
485
|
+
checkboxColumnHeaderLabel: string;
|
|
481
486
|
/**
|
|
482
487
|
* Sets the text for the title and `aria-label` attributes on the collapse icon of group rows.
|
|
483
488
|
*/
|
|
@@ -690,6 +695,14 @@ export declare class GridMessages extends ComponentMessages {
|
|
|
690
695
|
* The text for the AI Assistant mode button in the SmartBox tool popup.
|
|
691
696
|
*/
|
|
692
697
|
smartBoxAIAssistantModePopupButton: string;
|
|
698
|
+
/**
|
|
699
|
+
* Sets the screen-reader-only content for the detail expand/collapse column header.
|
|
700
|
+
*/
|
|
701
|
+
detailColumnHeaderLabel: string;
|
|
702
|
+
/**
|
|
703
|
+
* Sets the screen-reader-only content for the row reorder column header.
|
|
704
|
+
*/
|
|
705
|
+
dragColumnHeaderLabel: string;
|
|
693
706
|
static ɵfac: i0.ɵɵFactoryDeclaration<GridMessages, never>;
|
|
694
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<GridMessages, "kendo-grid-messages-base", never, { "groupPanelEmpty": { "alias": "groupPanelEmpty"; "required": false; }; "noRecords": { "alias": "noRecords"; "required": false; }; "pagerLabel": { "alias": "pagerLabel"; "required": false; }; "pagerFirstPage": { "alias": "pagerFirstPage"; "required": false; }; "pagerLastPage": { "alias": "pagerLastPage"; "required": false; }; "pagerPreviousPage": { "alias": "pagerPreviousPage"; "required": false; }; "pagerNextPage": { "alias": "pagerNextPage"; "required": false; }; "pagerPage": { "alias": "pagerPage"; "required": false; }; "pagerItemsPerPage": { "alias": "pagerItemsPerPage"; "required": false; }; "pagerOf": { "alias": "pagerOf"; "required": false; }; "pagerItems": { "alias": "pagerItems"; "required": false; }; "pagerPageNumberInputTitle": { "alias": "pagerPageNumberInputTitle"; "required": false; }; "pagerInputLabel": { "alias": "pagerInputLabel"; "required": false; }; "pagerSelectPage": { "alias": "pagerSelectPage"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "filterInputLabel": { "alias": "filterInputLabel"; "required": false; }; "filterMenuTitle": { "alias": "filterMenuTitle"; "required": false; }; "filterMenuOperatorsDropDownLabel": { "alias": "filterMenuOperatorsDropDownLabel"; "required": false; }; "filterMenuLogicDropDownLabel": { "alias": "filterMenuLogicDropDownLabel"; "required": false; }; "filterCellOperatorLabel": { "alias": "filterCellOperatorLabel"; "required": false; }; "booleanFilterCellLabel": { "alias": "booleanFilterCellLabel"; "required": false; }; "aiAssistantApplyButtonText": { "alias": "aiAssistantApplyButtonText"; "required": false; }; "aiAssistantToolbarToolText": { "alias": "aiAssistantToolbarToolText"; "required": false; }; "aiAssistantWindowTitle": { "alias": "aiAssistantWindowTitle"; "required": false; }; "aiAssistantWindowCloseTitle": { "alias": "aiAssistantWindowCloseTitle"; "required": false; }; "aiAssistantOutputCardTitle": { "alias": "aiAssistantOutputCardTitle"; "required": false; }; "aiAssistantOutputCardBodyContent": { "alias": "aiAssistantOutputCardBodyContent"; "required": false; }; "aiAssistantSelectionNotEnabled": { "alias": "aiAssistantSelectionNotEnabled"; "required": false; }; "aiAssistantSelectionRowModeRequired": { "alias": "aiAssistantSelectionRowModeRequired"; "required": false; }; "aiAssistantSelectionCellModeRequired": { "alias": "aiAssistantSelectionCellModeRequired"; "required": false; }; "aiAssistantWindowMaximizeTitle": { "alias": "aiAssistantWindowMaximizeTitle"; "required": false; }; "aiAssistantWindowMinimizeTitle": { "alias": "aiAssistantWindowMinimizeTitle"; "required": false; }; "aiAssistantWindowRestoreTitle": { "alias": "aiAssistantWindowRestoreTitle"; "required": false; }; "filterEqOperator": { "alias": "filterEqOperator"; "required": false; }; "filterNotEqOperator": { "alias": "filterNotEqOperator"; "required": false; }; "filterIsNullOperator": { "alias": "filterIsNullOperator"; "required": false; }; "filterIsNotNullOperator": { "alias": "filterIsNotNullOperator"; "required": false; }; "filterIsEmptyOperator": { "alias": "filterIsEmptyOperator"; "required": false; }; "filterIsNotEmptyOperator": { "alias": "filterIsNotEmptyOperator"; "required": false; }; "filterStartsWithOperator": { "alias": "filterStartsWithOperator"; "required": false; }; "filterContainsOperator": { "alias": "filterContainsOperator"; "required": false; }; "filterNotContainsOperator": { "alias": "filterNotContainsOperator"; "required": false; }; "filterEndsWithOperator": { "alias": "filterEndsWithOperator"; "required": false; }; "filterGteOperator": { "alias": "filterGteOperator"; "required": false; }; "filterGtOperator": { "alias": "filterGtOperator"; "required": false; }; "filterLteOperator": { "alias": "filterLteOperator"; "required": false; }; "filterLtOperator": { "alias": "filterLtOperator"; "required": false; }; "filterIsTrue": { "alias": "filterIsTrue"; "required": false; }; "filterIsFalse": { "alias": "filterIsFalse"; "required": false; }; "filterBooleanAll": { "alias": "filterBooleanAll"; "required": false; }; "adaptiveFilterOperatorsTitle": { "alias": "adaptiveFilterOperatorsTitle"; "required": false; }; "filterAfterOrEqualOperator": { "alias": "filterAfterOrEqualOperator"; "required": false; }; "filterAfterOperator": { "alias": "filterAfterOperator"; "required": false; }; "filterBeforeOperator": { "alias": "filterBeforeOperator"; "required": false; }; "filterBeforeOrEqualOperator": { "alias": "filterBeforeOrEqualOperator"; "required": false; }; "filterFilterButton": { "alias": "filterFilterButton"; "required": false; }; "filterClearButton": { "alias": "filterClearButton"; "required": false; }; "adaptiveCloseButtonTitle": { "alias": "adaptiveCloseButtonTitle"; "required": false; }; "adaptiveBackButtonTitle": { "alias": "adaptiveBackButtonTitle"; "required": false; }; "filterAndLogic": { "alias": "filterAndLogic"; "required": false; }; "filterOrLogic": { "alias": "filterOrLogic"; "required": false; }; "filterToolbarToolText": { "alias": "filterToolbarToolText"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "gridLabel": { "alias": "gridLabel"; "required": false; }; "columnMenu": { "alias": "columnMenu"; "required": false; }; "setColumnPosition": { "alias": "setColumnPosition"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "columnChooserSelectAll": { "alias": "columnChooserSelectAll"; "required": false; }; "columnChooserSearchLabel": { "alias": "columnChooserSearchLabel"; "required": false; }; "columnChooserSelectedColumnsCount": { "alias": "columnChooserSelectedColumnsCount"; "required": false; }; "columnsSubtitle": { "alias": "columnsSubtitle"; "required": false; }; "adaptiveFilterTitle": { "alias": "adaptiveFilterTitle"; "required": false; }; "adaptiveSortTitle": { "alias": "adaptiveSortTitle"; "required": false; }; "adaptiveGroupTitle": { "alias": "adaptiveGroupTitle"; "required": false; }; "filterClearAllButton": { "alias": "filterClearAllButton"; "required": false; }; "groupClearButton": { "alias": "groupClearButton"; "required": false; }; "sortClearButton": { "alias": "sortClearButton"; "required": false; }; "sortDoneButton": { "alias": "sortDoneButton"; "required": false; }; "groupDoneButton": { "alias": "groupDoneButton"; "required": false; }; "lock": { "alias": "lock"; "required": false; }; "unlock": { "alias": "unlock"; "required": false; }; "stick": { "alias": "stick"; "required": false; }; "unstick": { "alias": "unstick"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "sortAscending": { "alias": "sortAscending"; "required": false; }; "sortDescending": { "alias": "sortDescending"; "required": false; }; "autosizeThisColumn": { "alias": "autosizeThisColumn"; "required": false; }; "autosizeAllColumns": { "alias": "autosizeAllColumns"; "required": false; }; "sortedAscending": { "alias": "sortedAscending"; "required": false; }; "sortedDescending": { "alias": "sortedDescending"; "required": false; }; "sortedDefault": { "alias": "sortedDefault"; "required": false; }; "sortToolbarToolText": { "alias": "sortToolbarToolText"; "required": false; }; "columnsApply": { "alias": "columnsApply"; "required": false; }; "columnsReset": { "alias": "columnsReset"; "required": false; }; "detailExpand": { "alias": "detailExpand"; "required": false; }; "detailCollapse": { "alias": "detailCollapse"; "required": false; }; "filterDateToday": { "alias": "filterDateToday"; "required": false; }; "filterDateToggle": { "alias": "filterDateToggle"; "required": false; }; "filterNumericDecrement": { "alias": "filterNumericDecrement"; "required": false; }; "filterNumericIncrement": { "alias": "filterNumericIncrement"; "required": false; }; "selectionCheckboxLabel": { "alias": "selectionCheckboxLabel"; "required": false; }; "selectAllCheckboxLabel": { "alias": "selectAllCheckboxLabel"; "required": false; }; "groupCollapse": { "alias": "groupCollapse"; "required": false; }; "groupExpand": { "alias": "groupExpand"; "required": false; }; "topToolbarLabel": { "alias": "topToolbarLabel"; "required": false; }; "bottomToolbarLabel": { "alias": "bottomToolbarLabel"; "required": false; }; "editToolbarToolText": { "alias": "editToolbarToolText"; "required": false; }; "saveToolbarToolText": { "alias": "saveToolbarToolText"; "required": false; }; "addToolbarToolText": { "alias": "addToolbarToolText"; "required": false; }; "cancelToolbarToolText": { "alias": "cancelToolbarToolText"; "required": false; }; "removeToolbarToolText": { "alias": "removeToolbarToolText"; "required": false; }; "excelExportToolbarToolText": { "alias": "excelExportToolbarToolText"; "required": false; }; "csvExportToolbarToolText": { "alias": "csvExportToolbarToolText"; "required": false; }; "pdfExportToolbarToolText": { "alias": "pdfExportToolbarToolText"; "required": false; }; "groupPanelLabel": { "alias": "groupPanelLabel"; "required": false; }; "dragRowHandleLabel": { "alias": "dragRowHandleLabel"; "required": false; }; "columnMenuFilterTabTitle": { "alias": "columnMenuFilterTabTitle"; "required": false; }; "columnMenuGeneralTabTitle": { "alias": "columnMenuGeneralTabTitle"; "required": false; }; "columnMenuColumnsTabTitle": { "alias": "columnMenuColumnsTabTitle"; "required": false; }; "groupChipMenuPrevious": { "alias": "groupChipMenuPrevious"; "required": false; }; "groupChipMenuNext": { "alias": "groupChipMenuNext"; "required": false; }; "groupToolbarToolText": { "alias": "groupToolbarToolText"; "required": false; }; "formValidationErrorText": { "alias": "formValidationErrorText"; "required": false; }; "removeConfirmationDialogTitle": { "alias": "removeConfirmationDialogTitle"; "required": false; }; "removeConfirmationDialogContent": { "alias": "removeConfirmationDialogContent"; "required": false; }; "removeConfirmationDialogConfirmText": { "alias": "removeConfirmationDialogConfirmText"; "required": false; }; "removeConfirmationDialogRejectText": { "alias": "removeConfirmationDialogRejectText"; "required": false; }; "externalEditingTitle": { "alias": "externalEditingTitle"; "required": false; }; "externalEditingAddTitle": { "alias": "externalEditingAddTitle"; "required": false; }; "externalEditingSaveText": { "alias": "externalEditingSaveText"; "required": false; }; "externalEditingCancelText": { "alias": "externalEditingCancelText"; "required": false; }; "multiCheckboxFilterSearchPlaceholder": { "alias": "multiCheckboxFilterSearchPlaceholder"; "required": false; }; "multiCheckboxFilterSelectAllLabel": { "alias": "multiCheckboxFilterSelectAllLabel"; "required": false; }; "multiCheckboxFilterSelectedItemsCount": { "alias": "multiCheckboxFilterSelectedItemsCount"; "required": false; }; "smartBoxSpeechToTextButton": { "alias": "smartBoxSpeechToTextButton"; "required": false; }; "smartBoxSubmitPromptButton": { "alias": "smartBoxSubmitPromptButton"; "required": false; }; "smartBoxSearchPlaceholder": { "alias": "smartBoxSearchPlaceholder"; "required": false; }; "smartBoxSemanticSearchPlaceholder": { "alias": "smartBoxSemanticSearchPlaceholder"; "required": false; }; "smartBoxAIAssistantPlaceholder": { "alias": "smartBoxAIAssistantPlaceholder"; "required": false; }; "smartBoxSuggestedPrompts": { "alias": "smartBoxSuggestedPrompts"; "required": false; }; "smartBoxNoPreviousSearches": { "alias": "smartBoxNoPreviousSearches"; "required": false; }; "smartBoxNoPreviousPrompts": { "alias": "smartBoxNoPreviousPrompts"; "required": false; }; "smartBoxPreviouslySearched": { "alias": "smartBoxPreviouslySearched"; "required": false; }; "smartBoxPreviouslyAsked": { "alias": "smartBoxPreviouslyAsked"; "required": false; }; "searchModeListItemText": { "alias": "searchModeListItemText"; "required": false; }; "searchModeListItemDescription": { "alias": "searchModeListItemDescription"; "required": false; }; "semanticSearchModeListItemText": { "alias": "semanticSearchModeListItemText"; "required": false; }; "semanticSearchModeListItemDescription": { "alias": "semanticSearchModeListItemDescription"; "required": false; }; "smartBoxSearchModePopupButton": { "alias": "smartBoxSearchModePopupButton"; "required": false; }; "smartBoxAIAssistantModePopupButton": { "alias": "smartBoxAIAssistantModePopupButton"; "required": false; }; }, {}, never, never, true, never>;
|
|
707
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GridMessages, "kendo-grid-messages-base", never, { "groupPanelEmpty": { "alias": "groupPanelEmpty"; "required": false; }; "noRecords": { "alias": "noRecords"; "required": false; }; "pagerLabel": { "alias": "pagerLabel"; "required": false; }; "pagerFirstPage": { "alias": "pagerFirstPage"; "required": false; }; "pagerLastPage": { "alias": "pagerLastPage"; "required": false; }; "pagerPreviousPage": { "alias": "pagerPreviousPage"; "required": false; }; "pagerNextPage": { "alias": "pagerNextPage"; "required": false; }; "pagerPage": { "alias": "pagerPage"; "required": false; }; "pagerItemsPerPage": { "alias": "pagerItemsPerPage"; "required": false; }; "pagerOf": { "alias": "pagerOf"; "required": false; }; "pagerItems": { "alias": "pagerItems"; "required": false; }; "pagerPageNumberInputTitle": { "alias": "pagerPageNumberInputTitle"; "required": false; }; "pagerInputLabel": { "alias": "pagerInputLabel"; "required": false; }; "pagerSelectPage": { "alias": "pagerSelectPage"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "filterInputLabel": { "alias": "filterInputLabel"; "required": false; }; "filterMenuTitle": { "alias": "filterMenuTitle"; "required": false; }; "filterMenuOperatorsDropDownLabel": { "alias": "filterMenuOperatorsDropDownLabel"; "required": false; }; "filterMenuLogicDropDownLabel": { "alias": "filterMenuLogicDropDownLabel"; "required": false; }; "filterCellOperatorLabel": { "alias": "filterCellOperatorLabel"; "required": false; }; "booleanFilterCellLabel": { "alias": "booleanFilterCellLabel"; "required": false; }; "aiAssistantApplyButtonText": { "alias": "aiAssistantApplyButtonText"; "required": false; }; "aiAssistantToolbarToolText": { "alias": "aiAssistantToolbarToolText"; "required": false; }; "aiAssistantWindowTitle": { "alias": "aiAssistantWindowTitle"; "required": false; }; "aiAssistantWindowCloseTitle": { "alias": "aiAssistantWindowCloseTitle"; "required": false; }; "aiAssistantOutputCardTitle": { "alias": "aiAssistantOutputCardTitle"; "required": false; }; "aiAssistantOutputCardBodyContent": { "alias": "aiAssistantOutputCardBodyContent"; "required": false; }; "aiAssistantSelectionNotEnabled": { "alias": "aiAssistantSelectionNotEnabled"; "required": false; }; "aiAssistantSelectionRowModeRequired": { "alias": "aiAssistantSelectionRowModeRequired"; "required": false; }; "aiAssistantSelectionCellModeRequired": { "alias": "aiAssistantSelectionCellModeRequired"; "required": false; }; "aiAssistantWindowMaximizeTitle": { "alias": "aiAssistantWindowMaximizeTitle"; "required": false; }; "aiAssistantWindowMinimizeTitle": { "alias": "aiAssistantWindowMinimizeTitle"; "required": false; }; "aiAssistantWindowRestoreTitle": { "alias": "aiAssistantWindowRestoreTitle"; "required": false; }; "filterEqOperator": { "alias": "filterEqOperator"; "required": false; }; "filterNotEqOperator": { "alias": "filterNotEqOperator"; "required": false; }; "filterIsNullOperator": { "alias": "filterIsNullOperator"; "required": false; }; "filterIsNotNullOperator": { "alias": "filterIsNotNullOperator"; "required": false; }; "filterIsEmptyOperator": { "alias": "filterIsEmptyOperator"; "required": false; }; "filterIsNotEmptyOperator": { "alias": "filterIsNotEmptyOperator"; "required": false; }; "filterStartsWithOperator": { "alias": "filterStartsWithOperator"; "required": false; }; "filterContainsOperator": { "alias": "filterContainsOperator"; "required": false; }; "filterNotContainsOperator": { "alias": "filterNotContainsOperator"; "required": false; }; "filterEndsWithOperator": { "alias": "filterEndsWithOperator"; "required": false; }; "filterGteOperator": { "alias": "filterGteOperator"; "required": false; }; "filterGtOperator": { "alias": "filterGtOperator"; "required": false; }; "filterLteOperator": { "alias": "filterLteOperator"; "required": false; }; "filterLtOperator": { "alias": "filterLtOperator"; "required": false; }; "filterIsTrue": { "alias": "filterIsTrue"; "required": false; }; "filterIsFalse": { "alias": "filterIsFalse"; "required": false; }; "filterBooleanAll": { "alias": "filterBooleanAll"; "required": false; }; "adaptiveFilterOperatorsTitle": { "alias": "adaptiveFilterOperatorsTitle"; "required": false; }; "filterAfterOrEqualOperator": { "alias": "filterAfterOrEqualOperator"; "required": false; }; "filterAfterOperator": { "alias": "filterAfterOperator"; "required": false; }; "filterBeforeOperator": { "alias": "filterBeforeOperator"; "required": false; }; "filterBeforeOrEqualOperator": { "alias": "filterBeforeOrEqualOperator"; "required": false; }; "filterFilterButton": { "alias": "filterFilterButton"; "required": false; }; "filterClearButton": { "alias": "filterClearButton"; "required": false; }; "adaptiveCloseButtonTitle": { "alias": "adaptiveCloseButtonTitle"; "required": false; }; "adaptiveBackButtonTitle": { "alias": "adaptiveBackButtonTitle"; "required": false; }; "filterAndLogic": { "alias": "filterAndLogic"; "required": false; }; "filterOrLogic": { "alias": "filterOrLogic"; "required": false; }; "filterToolbarToolText": { "alias": "filterToolbarToolText"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "gridLabel": { "alias": "gridLabel"; "required": false; }; "columnMenu": { "alias": "columnMenu"; "required": false; }; "setColumnPosition": { "alias": "setColumnPosition"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "columnChooserSelectAll": { "alias": "columnChooserSelectAll"; "required": false; }; "columnChooserSearchLabel": { "alias": "columnChooserSearchLabel"; "required": false; }; "columnChooserSelectedColumnsCount": { "alias": "columnChooserSelectedColumnsCount"; "required": false; }; "columnsSubtitle": { "alias": "columnsSubtitle"; "required": false; }; "adaptiveFilterTitle": { "alias": "adaptiveFilterTitle"; "required": false; }; "adaptiveSortTitle": { "alias": "adaptiveSortTitle"; "required": false; }; "adaptiveGroupTitle": { "alias": "adaptiveGroupTitle"; "required": false; }; "filterClearAllButton": { "alias": "filterClearAllButton"; "required": false; }; "groupClearButton": { "alias": "groupClearButton"; "required": false; }; "sortClearButton": { "alias": "sortClearButton"; "required": false; }; "sortDoneButton": { "alias": "sortDoneButton"; "required": false; }; "groupDoneButton": { "alias": "groupDoneButton"; "required": false; }; "lock": { "alias": "lock"; "required": false; }; "unlock": { "alias": "unlock"; "required": false; }; "stick": { "alias": "stick"; "required": false; }; "unstick": { "alias": "unstick"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "sortAscending": { "alias": "sortAscending"; "required": false; }; "sortDescending": { "alias": "sortDescending"; "required": false; }; "autosizeThisColumn": { "alias": "autosizeThisColumn"; "required": false; }; "autosizeAllColumns": { "alias": "autosizeAllColumns"; "required": false; }; "sortedAscending": { "alias": "sortedAscending"; "required": false; }; "sortedDescending": { "alias": "sortedDescending"; "required": false; }; "sortedDefault": { "alias": "sortedDefault"; "required": false; }; "sortToolbarToolText": { "alias": "sortToolbarToolText"; "required": false; }; "columnsApply": { "alias": "columnsApply"; "required": false; }; "columnsReset": { "alias": "columnsReset"; "required": false; }; "detailExpand": { "alias": "detailExpand"; "required": false; }; "detailCollapse": { "alias": "detailCollapse"; "required": false; }; "filterDateToday": { "alias": "filterDateToday"; "required": false; }; "filterDateToggle": { "alias": "filterDateToggle"; "required": false; }; "filterNumericDecrement": { "alias": "filterNumericDecrement"; "required": false; }; "filterNumericIncrement": { "alias": "filterNumericIncrement"; "required": false; }; "selectionCheckboxLabel": { "alias": "selectionCheckboxLabel"; "required": false; }; "selectAllCheckboxLabel": { "alias": "selectAllCheckboxLabel"; "required": false; }; "checkboxColumnHeaderLabel": { "alias": "checkboxColumnHeaderLabel"; "required": false; }; "groupCollapse": { "alias": "groupCollapse"; "required": false; }; "groupExpand": { "alias": "groupExpand"; "required": false; }; "topToolbarLabel": { "alias": "topToolbarLabel"; "required": false; }; "bottomToolbarLabel": { "alias": "bottomToolbarLabel"; "required": false; }; "editToolbarToolText": { "alias": "editToolbarToolText"; "required": false; }; "saveToolbarToolText": { "alias": "saveToolbarToolText"; "required": false; }; "addToolbarToolText": { "alias": "addToolbarToolText"; "required": false; }; "cancelToolbarToolText": { "alias": "cancelToolbarToolText"; "required": false; }; "removeToolbarToolText": { "alias": "removeToolbarToolText"; "required": false; }; "excelExportToolbarToolText": { "alias": "excelExportToolbarToolText"; "required": false; }; "csvExportToolbarToolText": { "alias": "csvExportToolbarToolText"; "required": false; }; "pdfExportToolbarToolText": { "alias": "pdfExportToolbarToolText"; "required": false; }; "groupPanelLabel": { "alias": "groupPanelLabel"; "required": false; }; "dragRowHandleLabel": { "alias": "dragRowHandleLabel"; "required": false; }; "columnMenuFilterTabTitle": { "alias": "columnMenuFilterTabTitle"; "required": false; }; "columnMenuGeneralTabTitle": { "alias": "columnMenuGeneralTabTitle"; "required": false; }; "columnMenuColumnsTabTitle": { "alias": "columnMenuColumnsTabTitle"; "required": false; }; "groupChipMenuPrevious": { "alias": "groupChipMenuPrevious"; "required": false; }; "groupChipMenuNext": { "alias": "groupChipMenuNext"; "required": false; }; "groupToolbarToolText": { "alias": "groupToolbarToolText"; "required": false; }; "formValidationErrorText": { "alias": "formValidationErrorText"; "required": false; }; "removeConfirmationDialogTitle": { "alias": "removeConfirmationDialogTitle"; "required": false; }; "removeConfirmationDialogContent": { "alias": "removeConfirmationDialogContent"; "required": false; }; "removeConfirmationDialogConfirmText": { "alias": "removeConfirmationDialogConfirmText"; "required": false; }; "removeConfirmationDialogRejectText": { "alias": "removeConfirmationDialogRejectText"; "required": false; }; "externalEditingTitle": { "alias": "externalEditingTitle"; "required": false; }; "externalEditingAddTitle": { "alias": "externalEditingAddTitle"; "required": false; }; "externalEditingSaveText": { "alias": "externalEditingSaveText"; "required": false; }; "externalEditingCancelText": { "alias": "externalEditingCancelText"; "required": false; }; "multiCheckboxFilterSearchPlaceholder": { "alias": "multiCheckboxFilterSearchPlaceholder"; "required": false; }; "multiCheckboxFilterSelectAllLabel": { "alias": "multiCheckboxFilterSelectAllLabel"; "required": false; }; "multiCheckboxFilterSelectedItemsCount": { "alias": "multiCheckboxFilterSelectedItemsCount"; "required": false; }; "smartBoxSpeechToTextButton": { "alias": "smartBoxSpeechToTextButton"; "required": false; }; "smartBoxSubmitPromptButton": { "alias": "smartBoxSubmitPromptButton"; "required": false; }; "smartBoxSearchPlaceholder": { "alias": "smartBoxSearchPlaceholder"; "required": false; }; "smartBoxSemanticSearchPlaceholder": { "alias": "smartBoxSemanticSearchPlaceholder"; "required": false; }; "smartBoxAIAssistantPlaceholder": { "alias": "smartBoxAIAssistantPlaceholder"; "required": false; }; "smartBoxSuggestedPrompts": { "alias": "smartBoxSuggestedPrompts"; "required": false; }; "smartBoxNoPreviousSearches": { "alias": "smartBoxNoPreviousSearches"; "required": false; }; "smartBoxNoPreviousPrompts": { "alias": "smartBoxNoPreviousPrompts"; "required": false; }; "smartBoxPreviouslySearched": { "alias": "smartBoxPreviouslySearched"; "required": false; }; "smartBoxPreviouslyAsked": { "alias": "smartBoxPreviouslyAsked"; "required": false; }; "searchModeListItemText": { "alias": "searchModeListItemText"; "required": false; }; "searchModeListItemDescription": { "alias": "searchModeListItemDescription"; "required": false; }; "semanticSearchModeListItemText": { "alias": "semanticSearchModeListItemText"; "required": false; }; "semanticSearchModeListItemDescription": { "alias": "semanticSearchModeListItemDescription"; "required": false; }; "smartBoxSearchModePopupButton": { "alias": "smartBoxSearchModePopupButton"; "required": false; }; "smartBoxAIAssistantModePopupButton": { "alias": "smartBoxAIAssistantModePopupButton"; "required": false; }; "detailColumnHeaderLabel": { "alias": "detailColumnHeaderLabel"; "required": false; }; "dragColumnHeaderLabel": { "alias": "dragColumnHeaderLabel"; "required": false; }; }, {}, never, never, true, never>;
|
|
695
708
|
}
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "23.2.1-develop.
|
|
10
|
+
"publishDate": 1773396983,
|
|
11
|
+
"version": "23.2.1-develop.7",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-grid",
|
|
3
|
-
"version": "23.2.1-develop.
|
|
3
|
+
"version": "23.2.1-develop.7",
|
|
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",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"package": {
|
|
74
74
|
"productName": "Kendo UI for Angular",
|
|
75
75
|
"productCode": "KENDOUIANGULAR",
|
|
76
|
-
"publishDate":
|
|
76
|
+
"publishDate": 1773396983,
|
|
77
77
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
78
78
|
}
|
|
79
79
|
},
|
|
@@ -86,32 +86,32 @@
|
|
|
86
86
|
"@progress/kendo-data-query": "^1.7.3",
|
|
87
87
|
"@progress/kendo-drawing": "^1.24.0",
|
|
88
88
|
"@progress/kendo-licensing": "^1.10.0",
|
|
89
|
-
"@progress/kendo-angular-buttons": "23.2.1-develop.
|
|
90
|
-
"@progress/kendo-angular-common": "23.2.1-develop.
|
|
91
|
-
"@progress/kendo-angular-dateinputs": "23.2.1-develop.
|
|
92
|
-
"@progress/kendo-angular-layout": "23.2.1-develop.
|
|
93
|
-
"@progress/kendo-angular-navigation": "23.2.1-develop.
|
|
94
|
-
"@progress/kendo-angular-dropdowns": "23.2.1-develop.
|
|
95
|
-
"@progress/kendo-angular-excel-export": "23.2.1-develop.
|
|
96
|
-
"@progress/kendo-angular-icons": "23.2.1-develop.
|
|
97
|
-
"@progress/kendo-angular-indicators": "23.2.1-develop.
|
|
98
|
-
"@progress/kendo-angular-inputs": "23.2.1-develop.
|
|
99
|
-
"@progress/kendo-angular-conversational-ui": "23.2.1-develop.
|
|
100
|
-
"@progress/kendo-angular-intl": "23.2.1-develop.
|
|
101
|
-
"@progress/kendo-angular-l10n": "23.2.1-develop.
|
|
102
|
-
"@progress/kendo-angular-label": "23.2.1-develop.
|
|
103
|
-
"@progress/kendo-angular-menu": "23.2.1-develop.
|
|
104
|
-
"@progress/kendo-angular-pager": "23.2.1-develop.
|
|
105
|
-
"@progress/kendo-angular-pdf-export": "23.2.1-develop.
|
|
106
|
-
"@progress/kendo-angular-popup": "23.2.1-develop.
|
|
107
|
-
"@progress/kendo-angular-toolbar": "23.2.1-develop.
|
|
108
|
-
"@progress/kendo-angular-upload": "23.2.1-develop.
|
|
109
|
-
"@progress/kendo-angular-utils": "23.2.1-develop.
|
|
89
|
+
"@progress/kendo-angular-buttons": "23.2.1-develop.7",
|
|
90
|
+
"@progress/kendo-angular-common": "23.2.1-develop.7",
|
|
91
|
+
"@progress/kendo-angular-dateinputs": "23.2.1-develop.7",
|
|
92
|
+
"@progress/kendo-angular-layout": "23.2.1-develop.7",
|
|
93
|
+
"@progress/kendo-angular-navigation": "23.2.1-develop.7",
|
|
94
|
+
"@progress/kendo-angular-dropdowns": "23.2.1-develop.7",
|
|
95
|
+
"@progress/kendo-angular-excel-export": "23.2.1-develop.7",
|
|
96
|
+
"@progress/kendo-angular-icons": "23.2.1-develop.7",
|
|
97
|
+
"@progress/kendo-angular-indicators": "23.2.1-develop.7",
|
|
98
|
+
"@progress/kendo-angular-inputs": "23.2.1-develop.7",
|
|
99
|
+
"@progress/kendo-angular-conversational-ui": "23.2.1-develop.7",
|
|
100
|
+
"@progress/kendo-angular-intl": "23.2.1-develop.7",
|
|
101
|
+
"@progress/kendo-angular-l10n": "23.2.1-develop.7",
|
|
102
|
+
"@progress/kendo-angular-label": "23.2.1-develop.7",
|
|
103
|
+
"@progress/kendo-angular-menu": "23.2.1-develop.7",
|
|
104
|
+
"@progress/kendo-angular-pager": "23.2.1-develop.7",
|
|
105
|
+
"@progress/kendo-angular-pdf-export": "23.2.1-develop.7",
|
|
106
|
+
"@progress/kendo-angular-popup": "23.2.1-develop.7",
|
|
107
|
+
"@progress/kendo-angular-toolbar": "23.2.1-develop.7",
|
|
108
|
+
"@progress/kendo-angular-upload": "23.2.1-develop.7",
|
|
109
|
+
"@progress/kendo-angular-utils": "23.2.1-develop.7",
|
|
110
110
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
111
111
|
},
|
|
112
112
|
"dependencies": {
|
|
113
113
|
"tslib": "^2.3.1",
|
|
114
|
-
"@progress/kendo-angular-schematics": "23.2.1-develop.
|
|
114
|
+
"@progress/kendo-angular-schematics": "23.2.1-develop.7",
|
|
115
115
|
"@progress/kendo-common": "^1.0.1",
|
|
116
116
|
"@progress/kendo-file-saver": "^1.0.0",
|
|
117
117
|
"@progress/kendo-csv": "^1.0.0"
|
|
@@ -68,7 +68,6 @@ export declare class HeaderComponent implements AfterViewInit, OnInit, OnChanges
|
|
|
68
68
|
size: GridSize;
|
|
69
69
|
sortedFields: any;
|
|
70
70
|
hostClass: boolean;
|
|
71
|
-
get sortableLabel(): string;
|
|
72
71
|
get columnMenuSettings(): ColumnMenuSettings;
|
|
73
72
|
dropTargets: QueryList<DropTargetDirective>;
|
|
74
73
|
filterMenus: QueryList<FilterMenuComponent>;
|
|
@@ -108,7 +107,7 @@ export declare class HeaderComponent implements AfterViewInit, OnInit, OnChanges
|
|
|
108
107
|
ngOnInit(): void;
|
|
109
108
|
ngOnDestroy(): void;
|
|
110
109
|
selectAllCheckboxId(): string;
|
|
111
|
-
|
|
110
|
+
messageFor(key: string): string;
|
|
112
111
|
isFirstOnRow(column: ColumnComponent, index: number): boolean;
|
|
113
112
|
logicalColumnIndex(column: any): number;
|
|
114
113
|
get showFilterMenu(): boolean;
|
|
@@ -119,6 +118,7 @@ export declare class HeaderComponent implements AfterViewInit, OnInit, OnChanges
|
|
|
119
118
|
shouldActivate(column: ColumnBase): boolean;
|
|
120
119
|
isInteractive(column: ColumnComponent, prop: string): boolean;
|
|
121
120
|
isCheckboxColumn(column: any): boolean;
|
|
121
|
+
isRowReorderColumn(column: any): boolean;
|
|
122
122
|
addStickyStyles(column: ColumnBase): {
|
|
123
123
|
[key: string]: any;
|
|
124
124
|
};
|
|
@@ -148,6 +148,14 @@ export declare class ListComponent implements OnInit, OnDestroy, AfterViewInit,
|
|
|
148
148
|
* @hidden
|
|
149
149
|
*/
|
|
150
150
|
resetVirtualScroll(newTotal: number): void;
|
|
151
|
+
/**
|
|
152
|
+
* After a column resize, rows may become shorter due to reduced text wrapping, leaving empty
|
|
153
|
+
* space at the bottom of the viewport. Expands `itemsToRender` to fill the gap using
|
|
154
|
+
* already-loaded data. Must be called after `scroller.update()` so that the row height
|
|
155
|
+
* service reflects the new actual row heights.
|
|
156
|
+
* @hidden
|
|
157
|
+
*/
|
|
158
|
+
fillViewportAfterColumnChange(): void;
|
|
151
159
|
/**
|
|
152
160
|
* Checks if the virtual scroll state is out of sync with the expected position.
|
|
153
161
|
* Used to determine if resetVirtualScroll should be called.
|
|
@@ -9,19 +9,19 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
9
9
|
function default_1(options) {
|
|
10
10
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'GridModule', package: 'grid', peerDependencies: {
|
|
11
11
|
// peer deps of the dropdowns
|
|
12
|
-
'@progress/kendo-angular-treeview': '23.2.1-develop.
|
|
13
|
-
'@progress/kendo-angular-navigation': '23.2.1-develop.
|
|
12
|
+
'@progress/kendo-angular-treeview': '23.2.1-develop.7',
|
|
13
|
+
'@progress/kendo-angular-navigation': '23.2.1-develop.7',
|
|
14
14
|
// peer dependency of kendo-angular-inputs
|
|
15
|
-
'@progress/kendo-angular-dialog': '23.2.1-develop.
|
|
15
|
+
'@progress/kendo-angular-dialog': '23.2.1-develop.7',
|
|
16
16
|
// peer dependency of kendo-angular-icons
|
|
17
17
|
'@progress/kendo-svg-icons': '^4.0.0',
|
|
18
18
|
// peer dependency of kendo-angular-layout
|
|
19
|
-
'@progress/kendo-angular-progressbar': '23.2.1-develop.
|
|
19
|
+
'@progress/kendo-angular-progressbar': '23.2.1-develop.7',
|
|
20
20
|
// transitive peer dependencies from toolbar
|
|
21
|
-
'@progress/kendo-angular-indicators': '23.2.1-develop.
|
|
21
|
+
'@progress/kendo-angular-indicators': '23.2.1-develop.7',
|
|
22
22
|
// transitive peer dependencies from conversational-ui
|
|
23
|
-
'@progress/kendo-angular-menu': '23.2.1-develop.
|
|
24
|
-
'@progress/kendo-angular-upload': '23.2.1-develop.
|
|
23
|
+
'@progress/kendo-angular-menu': '23.2.1-develop.7',
|
|
24
|
+
'@progress/kendo-angular-upload': '23.2.1-develop.7'
|
|
25
25
|
} });
|
|
26
26
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
27
27
|
}
|