@progress/kendo-angular-grid 23.3.0-develop.11 → 23.3.0-develop.12
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/fesm2022/progress-kendo-angular-grid.mjs +9 -96
- package/grid.component.d.ts +2 -2
- package/index.d.ts +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +24 -24
- package/rendering/list.component.d.ts +2 -2
- package/schematics/ngAdd/index.js +7 -7
- package/layout/browser-support.service.d.ts +0 -22
|
@@ -7,11 +7,12 @@ import { EventEmitter, Injectable, SecurityContext, InjectionToken, Optional, In
|
|
|
7
7
|
import { merge, of, Subject, zip as zip$1, from, Subscription, interval, fromEvent, Observable, BehaviorSubject } from 'rxjs';
|
|
8
8
|
import * as i1$3 from '@progress/kendo-angular-common';
|
|
9
9
|
import { isDocumentAvailable, Keys, hasClasses as hasClasses$1, isPresent as isPresent$1, normalizeKeys, anyChanged, TemplateContextDirective, DraggableDirective, EventsOutsideAngularDirective, replaceMessagePlaceholder, isChanged as isChanged$1, KendoInput, guid, areObjectsEqual, PrefixTemplateDirective, closest as closest$1, hasObservers, ResizeSensorComponent, isFirefox, firefoxMaxHeight, closestInScope as closestInScope$1, isFocusable as isFocusable$1, getLicenseMessage, shouldShowValidationUI, WatermarkOverlayComponent, PreventableEvent as PreventableEvent$1, ResizeBatchService } from '@progress/kendo-angular-common';
|
|
10
|
+
export { BrowserSupportService, ScrollbarService } from '@progress/kendo-angular-common';
|
|
10
11
|
import * as i1 from '@angular/platform-browser';
|
|
11
12
|
import * as i1$1 from '@progress/kendo-angular-icons';
|
|
12
13
|
import { IconWrapperComponent, IconsService, KENDO_ICONS } from '@progress/kendo-angular-icons';
|
|
13
14
|
import { plusIcon, cancelIcon, lockIcon, unlockIcon, caretAltDownIcon, caretAltRightIcon, caretAltLeftIcon, arrowLeftIcon, arrowRightIcon, sortDescSmallIcon, sortAscSmallIcon, filterClearIcon, filterIcon, searchIcon, checkIcon, arrowRotateCcwIcon, columnsIcon, sparklesIcon, fileCsvIcon, filePdfIcon, fileExcelIcon, trashIcon, saveIcon, pencilIcon, chevronUpIcon, chevronDownIcon, chevronRightIcon, displayInlineFlexIcon, maxWidthIcon, stickIcon, unstickIcon, setColumnPositionIcon, slidersIcon, moreVerticalIcon, reorderIcon, minusIcon, insertMiddleIcon, xIcon, xCircleIcon, plusCircleIcon, chevronLeftIcon, undoIcon, redoIcon, arrowsSwapIcon, groupIcon, tableWizardIcon, clockArrowRotateIcon, fileClockOutlineIcon, zoomSparkleIcon, arrowUpOutlineIcon, stopSmIcon, lightbulbOutlineIcon } from '@progress/kendo-svg-icons';
|
|
14
|
-
import { switchMap, take, map, filter, takeUntil, switchMapTo, delay, tap, throttleTime, debounceTime, distinctUntilChanged, skip,
|
|
15
|
+
import { switchMap, take, map, filter, takeUntil, switchMapTo, delay, tap, throttleTime, debounceTime, distinctUntilChanged, skip, bufferCount, flatMap } from 'rxjs/operators';
|
|
15
16
|
import * as i1$2 from '@progress/kendo-angular-l10n';
|
|
16
17
|
import { ComponentMessages, LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
17
18
|
import * as i56 from '@progress/kendo-angular-pager';
|
|
@@ -24241,8 +24242,8 @@ const packageMetadata = {
|
|
|
24241
24242
|
productName: 'Kendo UI for Angular',
|
|
24242
24243
|
productCode: 'KENDOUIANGULAR',
|
|
24243
24244
|
productCodes: ['KENDOUIANGULAR'],
|
|
24244
|
-
publishDate:
|
|
24245
|
-
version: '23.3.0-develop.
|
|
24245
|
+
publishDate: 1774364397,
|
|
24246
|
+
version: '23.3.0-develop.12',
|
|
24246
24247
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
24247
24248
|
};
|
|
24248
24249
|
|
|
@@ -24966,92 +24967,6 @@ const normalizeSettings = ({ buttonCount = 10, info = true, type = 'numeric', pa
|
|
|
24966
24967
|
*/
|
|
24967
24968
|
const normalize = (settings) => normalizeSettings(settings === true ? {} : settings);
|
|
24968
24969
|
|
|
24969
|
-
const canCreateElement = () => isDocumentAvailable() && document.createElement;
|
|
24970
|
-
let cachedScrollbarWidth = null;
|
|
24971
|
-
let cachedPixelRatio;
|
|
24972
|
-
let cachedRtlScrollLeft = null;
|
|
24973
|
-
function scrollbarWidth() {
|
|
24974
|
-
if (cachedScrollbarWidth === null && canCreateElement()) {
|
|
24975
|
-
cachedPixelRatio = window.devicePixelRatio || 1;
|
|
24976
|
-
const div = document.createElement("div");
|
|
24977
|
-
div.style.cssText = "overflow:scroll;overflow-x:hidden;zoom:1;clear:both;display:block";
|
|
24978
|
-
div.innerHTML = " ";
|
|
24979
|
-
document.body.appendChild(div);
|
|
24980
|
-
cachedScrollbarWidth = div.offsetWidth - div.scrollWidth;
|
|
24981
|
-
document.body.removeChild(div);
|
|
24982
|
-
}
|
|
24983
|
-
return cachedScrollbarWidth;
|
|
24984
|
-
}
|
|
24985
|
-
function rtlScrollLeft() {
|
|
24986
|
-
if (cachedRtlScrollLeft === null && canCreateElement()) {
|
|
24987
|
-
const outer = document.createElement('div');
|
|
24988
|
-
outer.style.direction = 'rtl';
|
|
24989
|
-
outer.style.display = 'block';
|
|
24990
|
-
outer.style.clear = 'both';
|
|
24991
|
-
outer.style.width = '100px';
|
|
24992
|
-
outer.style.visibility = 'hidden';
|
|
24993
|
-
outer.style.position = 'absolute';
|
|
24994
|
-
outer.style.left = '-10000px';
|
|
24995
|
-
outer.style.overflow = 'scroll';
|
|
24996
|
-
outer.style.zoom = '1';
|
|
24997
|
-
const inner = document.createElement('div');
|
|
24998
|
-
inner.style.width = '200px';
|
|
24999
|
-
inner.style.height = '1px';
|
|
25000
|
-
outer.append(inner);
|
|
25001
|
-
document.body.appendChild(outer);
|
|
25002
|
-
const initial = outer.scrollLeft;
|
|
25003
|
-
outer.scrollLeft = -1;
|
|
25004
|
-
cachedRtlScrollLeft = outer.scrollLeft < 0 ? outer.scrollLeft : initial;
|
|
25005
|
-
document.body.removeChild(outer);
|
|
25006
|
-
}
|
|
25007
|
-
return cachedRtlScrollLeft;
|
|
25008
|
-
}
|
|
25009
|
-
/**
|
|
25010
|
-
* @hidden
|
|
25011
|
-
* move to kendo-common
|
|
25012
|
-
*/
|
|
25013
|
-
class BrowserSupportService {
|
|
25014
|
-
zone;
|
|
25015
|
-
changeDetector;
|
|
25016
|
-
changes = new EventEmitter();
|
|
25017
|
-
subscriptions;
|
|
25018
|
-
constructor(zone, changeDetector) {
|
|
25019
|
-
this.zone = zone;
|
|
25020
|
-
this.changeDetector = changeDetector;
|
|
25021
|
-
if (typeof window === 'undefined') {
|
|
25022
|
-
return;
|
|
25023
|
-
}
|
|
25024
|
-
this.zone.runOutsideAngular(() => {
|
|
25025
|
-
this.subscriptions = fromEvent(window, 'resize').pipe(auditTime(100)).subscribe(() => {
|
|
25026
|
-
if (cachedPixelRatio !== window.devicePixelRatio) {
|
|
25027
|
-
zone.run(() => {
|
|
25028
|
-
cachedScrollbarWidth = null;
|
|
25029
|
-
this.changes.emit();
|
|
25030
|
-
this.changeDetector.markForCheck();
|
|
25031
|
-
});
|
|
25032
|
-
}
|
|
25033
|
-
});
|
|
25034
|
-
});
|
|
25035
|
-
}
|
|
25036
|
-
ngOnDestroy() {
|
|
25037
|
-
if (this.subscriptions) {
|
|
25038
|
-
this.subscriptions.unsubscribe();
|
|
25039
|
-
this.subscriptions = null;
|
|
25040
|
-
}
|
|
25041
|
-
}
|
|
25042
|
-
get scrollbarWidth() {
|
|
25043
|
-
return scrollbarWidth();
|
|
25044
|
-
}
|
|
25045
|
-
get rtlScrollLeft() {
|
|
25046
|
-
return rtlScrollLeft();
|
|
25047
|
-
}
|
|
25048
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: BrowserSupportService, deps: [{ token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
25049
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: BrowserSupportService });
|
|
25050
|
-
}
|
|
25051
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: BrowserSupportService, decorators: [{
|
|
25052
|
-
type: Injectable
|
|
25053
|
-
}], ctorParameters: () => [{ type: i0.NgZone }, { type: i0.ChangeDetectorRef }] });
|
|
25054
|
-
|
|
25055
24970
|
const isGroupItem = (source) => {
|
|
25056
24971
|
return source.items !== undefined &&
|
|
25057
24972
|
source.field !== undefined;
|
|
@@ -28226,7 +28141,7 @@ class ListComponent {
|
|
|
28226
28141
|
this.scroller.scrollHeightContainer = this.container.nativeElement.querySelector('.k-height-container');
|
|
28227
28142
|
this.scroller.total = this.isVirtual && !this.ctx.grid?.pageable ? this.total : this.allItems.length;
|
|
28228
28143
|
}
|
|
28229
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ListComponent, deps: [{ token: SCROLLER_FACTORY_TOKEN }, { token: DetailsService }, { token: ChangeNotificationService }, { token: SuspendService }, { token: GroupsService }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: ScrollSyncService }, { token: ResizeService }, { token: EditService }, { token:
|
|
28144
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ListComponent, deps: [{ token: SCROLLER_FACTORY_TOKEN }, { token: DetailsService }, { token: ChangeNotificationService }, { token: SuspendService }, { token: GroupsService }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: ScrollSyncService }, { token: ResizeService }, { token: EditService }, { token: i1$3.ScrollbarService }, { token: NavigationService }, { token: ScrollRequestService }, { token: ContextService }, { token: ColumnResizingService }, { token: i0.ChangeDetectorRef }, { token: PDFService }, { token: ColumnInfoService }, { token: DataMappingService }], target: i0.ɵɵFactoryTarget.Component });
|
|
28230
28145
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.20", type: ListComponent, isStandalone: true, selector: "kendo-grid-list", inputs: { data: "data", groups: "groups", total: "total", rowHeight: "rowHeight", detailRowHeight: "detailRowHeight", take: "take", skip: "skip", columns: "columns", detailTemplate: "detailTemplate", noRecordsTemplate: "noRecordsTemplate", selectable: "selectable", groupable: "groupable", filterable: "filterable", rowClass: "rowClass", rowSticky: "rowSticky", loading: "loading", trackBy: "trackBy", virtualColumns: "virtualColumns", isVirtual: "isVirtual", cellLoadingTemplate: "cellLoadingTemplate", loadingTemplate: "loadingTemplate", sort: "sort", size: "size" }, outputs: { contentScroll: "contentScroll", pageChange: "pageChange", scrollBottom: "scrollBottom" }, host: { properties: { "class.k-grid-container": "this.hostClass", "attr.role": "this.hostRole" } }, providers: [
|
|
28231
28146
|
{
|
|
28232
28147
|
provide: SCROLLER_FACTORY_TOKEN,
|
|
@@ -28503,7 +28418,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
28503
28418
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
28504
28419
|
type: Inject,
|
|
28505
28420
|
args: [SCROLLER_FACTORY_TOKEN]
|
|
28506
|
-
}] }, { type: DetailsService }, { type: ChangeNotificationService }, { type: SuspendService }, { type: GroupsService }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: ScrollSyncService }, { type: ResizeService }, { type: EditService }, { type:
|
|
28421
|
+
}] }, { type: DetailsService }, { type: ChangeNotificationService }, { type: SuspendService }, { type: GroupsService }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: ScrollSyncService }, { type: ResizeService }, { type: EditService }, { type: i1$3.ScrollbarService }, { type: NavigationService }, { type: ScrollRequestService }, { type: ContextService }, { type: ColumnResizingService }, { type: i0.ChangeDetectorRef }, { type: PDFService }, { type: ColumnInfoService }, { type: DataMappingService }], propDecorators: { hostClass: [{
|
|
28507
28422
|
type: HostBinding,
|
|
28508
28423
|
args: ['class.k-grid-container']
|
|
28509
28424
|
}], hostRole: [{
|
|
@@ -34792,9 +34707,8 @@ class GridComponent {
|
|
|
34792
34707
|
this.dragTargetContainer?.notify();
|
|
34793
34708
|
this.dropTargetContainer?.notify();
|
|
34794
34709
|
}
|
|
34795
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: GridComponent, deps: [{ token:
|
|
34710
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: GridComponent, deps: [{ token: i1$3.ScrollbarService }, { token: SelectionService }, { token: CellSelectionService }, { token: i0.ElementRef }, { token: GroupInfoService }, { token: GroupsService }, { token: ChangeNotificationService }, { token: DetailsService }, { token: EditService }, { token: FilterService }, { token: PDFService }, { token: ResponsiveService }, { token: i0.Renderer2 }, { token: ExcelService }, { token: CSVService }, { token: i0.NgZone }, { token: ScrollSyncService }, { token: DomEventsService }, { token: ColumnResizingService }, { token: i0.ChangeDetectorRef }, { token: ColumnReorderService }, { token: ColumnInfoService }, { token: NavigationService }, { token: SortService }, { token: ScrollRequestService }, { token: i1$2.LocalizationService }, { token: ContextService }, { token: SizingOptionsService }, { token: AdaptiveGridService }, { token: RowReorderService }, { token: DataMappingService }, { token: GridAIRequestResponseService }, { token: IdService }, { token: SearchService }], target: i0.ɵɵFactoryTarget.Component });
|
|
34796
34711
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.20", type: GridComponent, isStandalone: true, selector: "kendo-grid", inputs: { data: "data", pageSize: "pageSize", height: "height", rowHeight: "rowHeight", adaptiveMode: "adaptiveMode", detailRowHeight: "detailRowHeight", skip: "skip", scrollable: "scrollable", selectable: "selectable", sort: "sort", size: "size", trackBy: "trackBy", filter: "filter", group: "group", virtualColumns: "virtualColumns", filterable: "filterable", sortable: "sortable", pageable: "pageable", groupable: "groupable", gridResizable: "gridResizable", rowReorderable: "rowReorderable", navigable: "navigable", autoSize: "autoSize", rowClass: "rowClass", rowSticky: "rowSticky", rowSelected: "rowSelected", isRowSelectable: "isRowSelectable", cellSelected: "cellSelected", resizable: "resizable", reorderable: "reorderable", loading: "loading", columnMenu: "columnMenu", hideHeader: "hideHeader", showInactiveTools: "showInactiveTools", isDetailExpanded: "isDetailExpanded", isGroupExpanded: "isGroupExpanded", dataLayoutMode: "dataLayoutMode" }, outputs: { filterChange: "filterChange", pageChange: "pageChange", groupChange: "groupChange", sortChange: "sortChange", selectionChange: "selectionChange", rowReorder: "rowReorder", dataStateChange: "dataStateChange", gridStateChange: "gridStateChange", groupExpand: "groupExpand", groupCollapse: "groupCollapse", detailExpand: "detailExpand", detailCollapse: "detailCollapse", edit: "edit", cancel: "cancel", save: "save", remove: "remove", add: "add", cellClose: "cellClose", cellClick: "cellClick", pdfExport: "pdfExport", excelExport: "excelExport", csvExport: "csvExport", columnResize: "columnResize", columnReorder: "columnReorder", columnVisibilityChange: "columnVisibilityChange", columnLockedChange: "columnLockedChange", columnStickyChange: "columnStickyChange", scrollBottom: "scrollBottom", contentScroll: "contentScroll" }, host: { properties: { "attr.dir": "this.dir", "class.k-grid": "this.hostClass", "class.k-grid-sm": "this.sizeSmallClass", "class.k-grid-md": "this.sizeMediumClass", "class.k-grid-stack": "this.stackedClass", "class.k-grid-lockedcolumns": "this.lockedClasses", "class.k-grid-virtual": "this.virtualClasses", "class.k-grid-no-scrollbar": "this.noScrollbarClass", "class.k-grid-resizable": "this.isResizable", "style.minWidth": "this.minWidth", "style.maxWidth": "this.maxWidth", "style.minHeight": "this.minHeight", "style.maxHeight": "this.maxHeight" } }, providers: [
|
|
34797
|
-
BrowserSupportService,
|
|
34798
34712
|
LocalizationService,
|
|
34799
34713
|
ColumnInfoService,
|
|
34800
34714
|
SelectionService,
|
|
@@ -35784,7 +35698,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
35784
35698
|
encapsulation: ViewEncapsulation.None,
|
|
35785
35699
|
exportAs: 'kendoGrid',
|
|
35786
35700
|
providers: [
|
|
35787
|
-
BrowserSupportService,
|
|
35788
35701
|
LocalizationService,
|
|
35789
35702
|
ColumnInfoService,
|
|
35790
35703
|
SelectionService,
|
|
@@ -36796,7 +36709,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
36796
36709
|
ResizeSensorComponent
|
|
36797
36710
|
]
|
|
36798
36711
|
}]
|
|
36799
|
-
}], ctorParameters: () => [{ type:
|
|
36712
|
+
}], ctorParameters: () => [{ type: i1$3.ScrollbarService }, { type: SelectionService }, { type: CellSelectionService }, { type: i0.ElementRef }, { type: GroupInfoService }, { type: GroupsService }, { type: ChangeNotificationService }, { type: DetailsService }, { type: EditService }, { type: FilterService }, { type: PDFService }, { type: ResponsiveService }, { type: i0.Renderer2 }, { type: ExcelService }, { type: CSVService }, { type: i0.NgZone }, { type: ScrollSyncService }, { type: DomEventsService }, { type: ColumnResizingService }, { type: i0.ChangeDetectorRef }, { type: ColumnReorderService }, { type: ColumnInfoService }, { type: NavigationService }, { type: SortService }, { type: ScrollRequestService }, { type: i1$2.LocalizationService }, { type: ContextService }, { type: SizingOptionsService }, { type: AdaptiveGridService }, { type: RowReorderService }, { type: DataMappingService }, { type: GridAIRequestResponseService }, { type: IdService }, { type: SearchService }], propDecorators: { data: [{
|
|
36800
36713
|
type: Input
|
|
36801
36714
|
}], pageSize: [{
|
|
36802
36715
|
type: Input
|
|
@@ -43720,5 +43633,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
43720
43633
|
* Generated bundle index. Do not edit.
|
|
43721
43634
|
*/
|
|
43722
43635
|
|
|
43723
|
-
export { AIAssistantToolbarDirective, AdaptiveGridService, AddCommandDirective, AddCommandToolbarDirective, AfterEqFilterOperatorComponent, AfterFilterOperatorComponent, AutoCompleteFilterCellComponent, BaseFilterCellComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, BooleanFilterCellComponent, BooleanFilterComponent, BooleanFilterMenuComponent, BooleanFilterRadioButtonDirective,
|
|
43636
|
+
export { AIAssistantToolbarDirective, AdaptiveGridService, AddCommandDirective, AddCommandToolbarDirective, AfterEqFilterOperatorComponent, AfterFilterOperatorComponent, AutoCompleteFilterCellComponent, BaseFilterCellComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, BooleanFilterCellComponent, BooleanFilterComponent, BooleanFilterMenuComponent, BooleanFilterRadioButtonDirective, CELL_CONTEXT, CSVCommandDirective, CSVCommandToolbarDirective, CSVComponent, CSVExportEvent, CSVModule, CSVService, CancelCommandDirective, CancelCommandToolbarDirective, CellCloseEvent, CellComponent, CellLoadingTemplateDirective, CellSelectionAggregateService, CellSelectionService, CellTemplateDirective, ChangeNotificationService, CheckboxColumnComponent, ColGroupComponent, ColumnBase, ColumnChooserComponent, ColumnChooserToolbarDirective, ColumnComponent, ColumnGroupComponent, ColumnHandleDirective, ColumnInfoService, ColumnListComponent, ColumnLockedChangeEvent, ColumnMenuAutoSizeAllColumnsComponent, ColumnMenuAutoSizeColumnComponent, ColumnMenuChooserComponent, ColumnMenuComponent, ColumnMenuContainerComponent, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuItemContentTemplateDirective, ColumnMenuItemDirective, ColumnMenuLockComponent, ColumnMenuPositionComponent, ColumnMenuService, ColumnMenuSortComponent, ColumnMenuStickComponent, ColumnMenuTemplateDirective, ColumnReorderEvent, ColumnReorderService, ColumnResizingService, ColumnStickyChangeEvent, ColumnVisibilityChangeEvent, ColumnsContainer, CommandColumnComponent, ContainsFilterOperatorComponent, ContextService, CustomMessagesComponent, DEFAULT_AI_REQUEST_OPTIONS, DEFAULT_SCROLLER_FACTORY, DataBindingDirective, DateFilterCellComponent, DateFilterComponent, DateFilterMenuComponent, DateFilterMenuInputComponent, DetailCollapseEvent, DetailExpandEvent, DetailTemplateDirective, DetailsService, DoesNotContainFilterOperatorComponent, DomEventsService, DragAndDropService, DragHintService, DropCueService, EditCommandDirective, EditCommandToolbarDirective, EditService as EditServiceClass, EditTemplateDirective, EditingDirectiveBase, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, ExcelCommandDirective, ExcelCommandToolbarDirective, ExcelComponent, ExcelExportEvent, ExcelModule, ExcelService, ExpandDetailsDirective, ExpandGroupDirective, ExternalEditingDirective, FieldAccessorPipe, FilterCellComponent, FilterCellHostDirective, FilterCellOperatorsComponent, FilterCellTemplateDirective, FilterCellWrapperComponent, FilterCommandToolbarDirective, FilterInputDirective, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuDropDownListDirective, FilterMenuHostDirective, FilterMenuInputWrapperComponent, FilterMenuTemplateDirective, FilterOperatorBase, FilterRowComponent, FilterService, FocusRoot, FocusableDirective, FooterComponent, FooterTemplateDirective, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, GridAIAssistantResponseErrorEvent, GridAIAssistantResponseSuccessEvent, GridClipboardDirective, GridComponent, GridModule, GridSmartBoxHistoryItemTemplateDirective, GridSmartBoxPromptSuggestionTemplateDirective, GridSmartBoxResponseErrorEvent, GridSmartBoxResponseSuccessEvent, GridSmartBoxSearchEvent, GridSpacerComponent, GridTableDirective, GridToolbarFocusableDirective, GridToolbarNavigationService, GroupCommandToolbarDirective, GroupFooterTemplateDirective, GroupHeaderColumnTemplateDirective, GroupHeaderComponent, GroupHeaderTemplateDirective, GroupInfoService, GroupPanelComponent, GroupsService, HeaderComponent, HeaderTemplateDirective, HighlightDirective, IdService, InCellEditingDirective, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, KENDO_GRID, KENDO_GRID_BODY_EXPORTS, KENDO_GRID_COLUMN_DRAGANDDROP, KENDO_GRID_COLUMN_MENU_DECLARATIONS, KENDO_GRID_COLUMN_MENU_EXPORTS, KENDO_GRID_CSV_EXPORT, KENDO_GRID_DECLARATIONS, KENDO_GRID_EXCEL_EXPORT, KENDO_GRID_EXPORTS, KENDO_GRID_FILTER_MENU, KENDO_GRID_FILTER_MENU_EXPORTS, KENDO_GRID_FILTER_OPERATORS, KENDO_GRID_FILTER_ROW, KENDO_GRID_FILTER_ROW_EXPORTS, KENDO_GRID_FILTER_SHARED, KENDO_GRID_FOOTER_EXPORTS, KENDO_GRID_GROUP_EXPORTS, KENDO_GRID_HEADER_EXPORTS, KENDO_GRID_PDF_EXPORT, KENDO_GRID_SHARED, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, ListComponent, LoadingComponent, LoadingTemplateDirective, LocalDataChangesService, LogicalCellDirective, LogicalRowDirective, MenuTabbingService, MultiCheckboxFilterComponent, NavigationService, NoRecordsTemplateDirective, NotEqualFilterOperatorComponent, NumericFilterCellComponent, NumericFilterComponent, NumericFilterMenuComponent, NumericFilterMenuInputComponent, PDFCommandDirective, PDFCommandToolbarDirective, PDFComponent, PDFMarginComponent, PDFModule, PDFService, PDFTemplateDirective, PopupCloseEvent, ReactiveEditingDirective, RedoCommandToolbarDirective, RemoveCommandDirective, RemoveCommandToolbarDirective, ResizableContainerDirective, ResizeService, ResponsiveService, RowDragHandleTemplateDirective, RowDragHintTemplateDirective, RowEditingDirectiveBase, RowReorderColumnComponent, RowReorderService, SaveCommandDirective, SaveCommandToolbarDirective, ScrollRequestService, ScrollSyncService, SelectAllCheckboxDirective, SelectAllToolbarToolComponent, SelectionCheckboxDirective, SelectionDirective, SelectionService, SinglePopupService, SizingOptionsService, Skip, SmartBoxToolbarToolComponent, SortCommandToolbarDirective, SortService, SpanColumnComponent, StartsWithFilterOperatorComponent, StatusBarTemplateDirective, StringFilterCellComponent, StringFilterComponent, StringFilterMenuComponent, StringFilterMenuInputComponent, SuspendService, TableBodyComponent, TableDirective, TemplateEditingDirective, ToolbarComponent, ToolbarTemplateDirective, UndoCommandToolbarDirective, UndoRedoDirective, UndoRedoEvent, defaultTrackBy, hasFilterMenu, hasFilterRow, isFilterable };
|
|
43724
43637
|
|
package/grid.component.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ import { DetailTemplateDirective } from './rendering/details/detail-template.dir
|
|
|
13
13
|
import { ScrollMode } from './scrolling/scrollmode';
|
|
14
14
|
import { SortSettings } from './columns/sort-settings';
|
|
15
15
|
import { PagerSettings } from './common/pager-settings';
|
|
16
|
-
import {
|
|
16
|
+
import { ScrollbarService } from '@progress/kendo-angular-common';
|
|
17
17
|
import { GridDataResult, DataCollection } from './data/data.collection';
|
|
18
18
|
import { SelectionService } from './selection/selection.service';
|
|
19
19
|
import { EditService } from './editing/edit.service';
|
|
@@ -761,7 +761,7 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
|
|
|
761
761
|
private rowReorderSubscription;
|
|
762
762
|
private rtl;
|
|
763
763
|
private _rowSticky;
|
|
764
|
-
constructor(supportService:
|
|
764
|
+
constructor(supportService: ScrollbarService, selectionService: SelectionService, cellSelectionService: CellSelectionService, wrapper: ElementRef, groupInfoService: GroupInfoService, groupsService: GroupsService, changeNotification: ChangeNotificationService, detailsService: DetailsService, editService: EditService, filterService: FilterService, pdfService: PDFService, responsiveService: ResponsiveService, renderer: Renderer2, excelService: ExcelService, csvService: CSVService, ngZone: NgZone, scrollSyncService: ScrollSyncService, domEvents: DomEventsService, columnResizingService: ColumnResizingService, changeDetectorRef: ChangeDetectorRef, columnReorderService: ColumnReorderService, columnInfoService: ColumnInfoService, navigationService: NavigationService, sortService: SortService, scrollRequestService: ScrollRequestService, localization: LocalizationService, ctx: ContextService, sizingService: SizingOptionsService, adaptiveGridService: AdaptiveGridService, rowReorderService: RowReorderService, dataMappingService: DataMappingService, aiRequestResponseService: GridAIRequestResponseService, idService: IdService, searchService: SearchService);
|
|
765
765
|
/**
|
|
766
766
|
* Expands the master row at the specified data row index ([see example](https://www.telerik.com/kendo-angular-ui/components/grid/master-detail)).
|
|
767
767
|
*
|
package/index.d.ts
CHANGED
|
@@ -51,7 +51,7 @@ export { StringFilterComponent } from './filtering/string-filter.component';
|
|
|
51
51
|
export { MultiCheckboxFilterComponent } from './filtering/multicheckbox-filter.component';
|
|
52
52
|
export { GroupInfoService } from './grouping/group-info.service';
|
|
53
53
|
export { GroupsService } from './grouping/groups.service';
|
|
54
|
-
export { BrowserSupportService } from '
|
|
54
|
+
export { ScrollbarService, BrowserSupportService } from '@progress/kendo-angular-common';
|
|
55
55
|
export { ResizeService } from './layout/resize.service';
|
|
56
56
|
export { ResponsiveService } from './layout/responsive.service';
|
|
57
57
|
export { FocusRoot } from './navigation/focus-root';
|
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.3.0-develop.
|
|
10
|
+
"publishDate": 1774364397,
|
|
11
|
+
"version": "23.3.0-develop.12",
|
|
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.3.0-develop.
|
|
3
|
+
"version": "23.3.0-develop.12",
|
|
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": 1774364397,
|
|
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.1",
|
|
88
88
|
"@progress/kendo-licensing": "^1.10.0",
|
|
89
|
-
"@progress/kendo-angular-buttons": "23.3.0-develop.
|
|
90
|
-
"@progress/kendo-angular-common": "23.3.0-develop.
|
|
91
|
-
"@progress/kendo-angular-dateinputs": "23.3.0-develop.
|
|
92
|
-
"@progress/kendo-angular-layout": "23.3.0-develop.
|
|
93
|
-
"@progress/kendo-angular-navigation": "23.3.0-develop.
|
|
94
|
-
"@progress/kendo-angular-dropdowns": "23.3.0-develop.
|
|
95
|
-
"@progress/kendo-angular-excel-export": "23.3.0-develop.
|
|
96
|
-
"@progress/kendo-angular-icons": "23.3.0-develop.
|
|
97
|
-
"@progress/kendo-angular-indicators": "23.3.0-develop.
|
|
98
|
-
"@progress/kendo-angular-inputs": "23.3.0-develop.
|
|
99
|
-
"@progress/kendo-angular-conversational-ui": "23.3.0-develop.
|
|
100
|
-
"@progress/kendo-angular-intl": "23.3.0-develop.
|
|
101
|
-
"@progress/kendo-angular-l10n": "23.3.0-develop.
|
|
102
|
-
"@progress/kendo-angular-label": "23.3.0-develop.
|
|
103
|
-
"@progress/kendo-angular-menu": "23.3.0-develop.
|
|
104
|
-
"@progress/kendo-angular-pager": "23.3.0-develop.
|
|
105
|
-
"@progress/kendo-angular-pdf-export": "23.3.0-develop.
|
|
106
|
-
"@progress/kendo-angular-popup": "23.3.0-develop.
|
|
107
|
-
"@progress/kendo-angular-toolbar": "23.3.0-develop.
|
|
108
|
-
"@progress/kendo-angular-upload": "23.3.0-develop.
|
|
109
|
-
"@progress/kendo-angular-utils": "23.3.0-develop.
|
|
89
|
+
"@progress/kendo-angular-buttons": "23.3.0-develop.12",
|
|
90
|
+
"@progress/kendo-angular-common": "23.3.0-develop.12",
|
|
91
|
+
"@progress/kendo-angular-dateinputs": "23.3.0-develop.12",
|
|
92
|
+
"@progress/kendo-angular-layout": "23.3.0-develop.12",
|
|
93
|
+
"@progress/kendo-angular-navigation": "23.3.0-develop.12",
|
|
94
|
+
"@progress/kendo-angular-dropdowns": "23.3.0-develop.12",
|
|
95
|
+
"@progress/kendo-angular-excel-export": "23.3.0-develop.12",
|
|
96
|
+
"@progress/kendo-angular-icons": "23.3.0-develop.12",
|
|
97
|
+
"@progress/kendo-angular-indicators": "23.3.0-develop.12",
|
|
98
|
+
"@progress/kendo-angular-inputs": "23.3.0-develop.12",
|
|
99
|
+
"@progress/kendo-angular-conversational-ui": "23.3.0-develop.12",
|
|
100
|
+
"@progress/kendo-angular-intl": "23.3.0-develop.12",
|
|
101
|
+
"@progress/kendo-angular-l10n": "23.3.0-develop.12",
|
|
102
|
+
"@progress/kendo-angular-label": "23.3.0-develop.12",
|
|
103
|
+
"@progress/kendo-angular-menu": "23.3.0-develop.12",
|
|
104
|
+
"@progress/kendo-angular-pager": "23.3.0-develop.12",
|
|
105
|
+
"@progress/kendo-angular-pdf-export": "23.3.0-develop.12",
|
|
106
|
+
"@progress/kendo-angular-popup": "23.3.0-develop.12",
|
|
107
|
+
"@progress/kendo-angular-toolbar": "23.3.0-develop.12",
|
|
108
|
+
"@progress/kendo-angular-upload": "23.3.0-develop.12",
|
|
109
|
+
"@progress/kendo-angular-utils": "23.3.0-develop.12",
|
|
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.3.0-develop.
|
|
114
|
+
"@progress/kendo-angular-schematics": "23.3.0-develop.12",
|
|
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"
|
|
@@ -21,7 +21,7 @@ import { RowClassFn, RowStickyFn } from './common/row-class';
|
|
|
21
21
|
import { ScrollSyncService } from "../scrolling/scroll-sync.service";
|
|
22
22
|
import { ResizeService } from "../layout/resize.service";
|
|
23
23
|
import { ResizeSensorComponent } from "@progress/kendo-angular-common";
|
|
24
|
-
import {
|
|
24
|
+
import { ScrollbarService } from '@progress/kendo-angular-common';
|
|
25
25
|
import { SelectableSettings } from '../selection/types';
|
|
26
26
|
import { EditService } from '../editing/edit.service';
|
|
27
27
|
import { NavigationService } from '../navigation/navigation.service';
|
|
@@ -128,7 +128,7 @@ export declare class ListComponent implements OnInit, OnDestroy, AfterViewInit,
|
|
|
128
128
|
private minRowHeight;
|
|
129
129
|
private handleSkipOnData;
|
|
130
130
|
private scrollToIndex;
|
|
131
|
-
constructor(scrollerFactory: any, detailsService: DetailsService, changeNotification: ChangeNotificationService, suspendService: SuspendService, groupsService: GroupsService, ngZone: NgZone, renderer: Renderer2, scrollSyncService: ScrollSyncService, resizeService: ResizeService, editService: EditService, supportService:
|
|
131
|
+
constructor(scrollerFactory: any, detailsService: DetailsService, changeNotification: ChangeNotificationService, suspendService: SuspendService, groupsService: GroupsService, ngZone: NgZone, renderer: Renderer2, scrollSyncService: ScrollSyncService, resizeService: ResizeService, editService: EditService, supportService: ScrollbarService, navigationService: NavigationService, scrollRequestService: ScrollRequestService, ctx: ContextService, columnResizingService: ColumnResizingService, changeDetector: ChangeDetectorRef, pdfService: PDFService, columnInfo: ColumnInfoService, dataMappingService: DataMappingService);
|
|
132
132
|
ngOnInit(): void;
|
|
133
133
|
ngOnChanges(changes: {
|
|
134
134
|
[propertyName: string]: SimpleChange;
|
|
@@ -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.3.0-develop.
|
|
13
|
-
'@progress/kendo-angular-navigation': '23.3.0-develop.
|
|
12
|
+
'@progress/kendo-angular-treeview': '23.3.0-develop.12',
|
|
13
|
+
'@progress/kendo-angular-navigation': '23.3.0-develop.12',
|
|
14
14
|
// peer dependency of kendo-angular-inputs
|
|
15
|
-
'@progress/kendo-angular-dialog': '23.3.0-develop.
|
|
15
|
+
'@progress/kendo-angular-dialog': '23.3.0-develop.12',
|
|
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.3.0-develop.
|
|
19
|
+
'@progress/kendo-angular-progressbar': '23.3.0-develop.12',
|
|
20
20
|
// transitive peer dependencies from toolbar
|
|
21
|
-
'@progress/kendo-angular-indicators': '23.3.0-develop.
|
|
21
|
+
'@progress/kendo-angular-indicators': '23.3.0-develop.12',
|
|
22
22
|
// transitive peer dependencies from conversational-ui
|
|
23
|
-
'@progress/kendo-angular-menu': '23.3.0-develop.
|
|
24
|
-
'@progress/kendo-angular-upload': '23.3.0-develop.
|
|
23
|
+
'@progress/kendo-angular-menu': '23.3.0-develop.12',
|
|
24
|
+
'@progress/kendo-angular-upload': '23.3.0-develop.12'
|
|
25
25
|
} });
|
|
26
26
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
27
27
|
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { NgZone, ChangeDetectorRef, EventEmitter, OnDestroy } from '@angular/core';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
/**
|
|
8
|
-
* @hidden
|
|
9
|
-
* move to kendo-common
|
|
10
|
-
*/
|
|
11
|
-
export declare class BrowserSupportService implements OnDestroy {
|
|
12
|
-
private zone;
|
|
13
|
-
private changeDetector;
|
|
14
|
-
changes: EventEmitter<any>;
|
|
15
|
-
private subscriptions;
|
|
16
|
-
constructor(zone: NgZone, changeDetector: ChangeDetectorRef);
|
|
17
|
-
ngOnDestroy(): void;
|
|
18
|
-
get scrollbarWidth(): number;
|
|
19
|
-
get rtlScrollLeft(): number;
|
|
20
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BrowserSupportService, never>;
|
|
21
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<BrowserSupportService>;
|
|
22
|
-
}
|