@progress/kendo-angular-treelist 23.3.0-develop.11 → 23.3.0-develop.13
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-treelist.mjs +8 -87
- package/filtering/filterable.d.ts +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +18 -18
- package/rendering/list.component.d.ts +2 -2
- package/schematics/ngAdd/index.js +3 -3
- package/treelist.component.d.ts +2 -2
- package/layout/browser-support.service.d.ts +0 -22
|
@@ -15,8 +15,8 @@ import { DialogContainerService, DialogService, WindowService, WindowContainerSe
|
|
|
15
15
|
import { NgTemplateOutlet, NgClass, NgStyle } from '@angular/common';
|
|
16
16
|
import * as i4 from '@angular/forms';
|
|
17
17
|
import { ReactiveFormsModule, NG_VALUE_ACCESSOR, FormsModule, FormControl, FormGroup } from '@angular/forms';
|
|
18
|
-
import { merge, of,
|
|
19
|
-
import {
|
|
18
|
+
import { merge, of, isObservable, BehaviorSubject, Subscription, Subject, fromEvent, zip as zip$1, from, interval, Observable } from 'rxjs';
|
|
19
|
+
import { take, switchMap, map, distinctUntilChanged, filter, tap, throttleTime, skip, takeUntil, switchMapTo, bufferCount, delay, debounceTime } from 'rxjs/operators';
|
|
20
20
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
21
21
|
import * as i1$1 from '@progress/kendo-angular-l10n';
|
|
22
22
|
import { ComponentMessages, LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
@@ -49,8 +49,8 @@ const packageMetadata = {
|
|
|
49
49
|
productName: 'Kendo UI for Angular',
|
|
50
50
|
productCode: 'KENDOUIANGULAR',
|
|
51
51
|
productCodes: ['KENDOUIANGULAR'],
|
|
52
|
-
publishDate:
|
|
53
|
-
version: '23.3.0-develop.
|
|
52
|
+
publishDate: 1774450112,
|
|
53
|
+
version: '23.3.0-develop.13',
|
|
54
54
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
55
55
|
};
|
|
56
56
|
|
|
@@ -1298,83 +1298,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
1298
1298
|
args: [ColumnBase]
|
|
1299
1299
|
}] } });
|
|
1300
1300
|
|
|
1301
|
-
const canCreateElement = () => isDocumentAvailable() && document.createElement;
|
|
1302
|
-
let cachedScrollbarWidth = null;
|
|
1303
|
-
let cachedPixelRatio;
|
|
1304
|
-
let cachedRtlScrollLeft = null;
|
|
1305
|
-
function scrollbarWidth() {
|
|
1306
|
-
if (cachedScrollbarWidth === null && canCreateElement()) {
|
|
1307
|
-
cachedPixelRatio = window.devicePixelRatio || 1;
|
|
1308
|
-
const div = document.createElement("div");
|
|
1309
|
-
div.style.cssText = "overflow:scroll;overflow-x:hidden;zoom:1;clear:both;display:block";
|
|
1310
|
-
div.innerHTML = " ";
|
|
1311
|
-
document.body.appendChild(div);
|
|
1312
|
-
cachedScrollbarWidth = div.offsetWidth - div.scrollWidth;
|
|
1313
|
-
document.body.removeChild(div);
|
|
1314
|
-
}
|
|
1315
|
-
return cachedScrollbarWidth;
|
|
1316
|
-
}
|
|
1317
|
-
function rtlScrollLeft() {
|
|
1318
|
-
if (cachedRtlScrollLeft === null && canCreateElement()) {
|
|
1319
|
-
const div = document.createElement("div");
|
|
1320
|
-
div.style.cssText = "overflow:scroll;zoom:1;clear:both;display:block;width:100px;visibility:hidden;position:absolute;left:-10000px;direction:rtl;";
|
|
1321
|
-
const innerDiv = document.createElement('div');
|
|
1322
|
-
innerDiv.style.width = '200px';
|
|
1323
|
-
innerDiv.style.height = '1px';
|
|
1324
|
-
div.appendChild(innerDiv);
|
|
1325
|
-
document.body.appendChild(div);
|
|
1326
|
-
const initial = div.scrollLeft;
|
|
1327
|
-
div.scrollLeft = -1;
|
|
1328
|
-
cachedRtlScrollLeft = div.scrollLeft < 0 ? div.scrollLeft : initial;
|
|
1329
|
-
document.body.removeChild(div);
|
|
1330
|
-
}
|
|
1331
|
-
return cachedRtlScrollLeft;
|
|
1332
|
-
}
|
|
1333
|
-
/**
|
|
1334
|
-
* @hidden
|
|
1335
|
-
* move to kendo-common
|
|
1336
|
-
*/
|
|
1337
|
-
class BrowserSupportService {
|
|
1338
|
-
zone;
|
|
1339
|
-
changeDetector;
|
|
1340
|
-
changes = new EventEmitter();
|
|
1341
|
-
subscriptions;
|
|
1342
|
-
constructor(zone, changeDetector) {
|
|
1343
|
-
this.zone = zone;
|
|
1344
|
-
this.changeDetector = changeDetector;
|
|
1345
|
-
if (typeof window !== 'undefined') {
|
|
1346
|
-
this.zone.runOutsideAngular(() => {
|
|
1347
|
-
this.subscriptions = fromEvent(window, 'resize').pipe(auditTime(100)).subscribe(() => {
|
|
1348
|
-
if (cachedPixelRatio !== window.devicePixelRatio) {
|
|
1349
|
-
zone.run(() => {
|
|
1350
|
-
cachedScrollbarWidth = null;
|
|
1351
|
-
this.changes.emit();
|
|
1352
|
-
this.changeDetector.markForCheck();
|
|
1353
|
-
});
|
|
1354
|
-
}
|
|
1355
|
-
});
|
|
1356
|
-
});
|
|
1357
|
-
}
|
|
1358
|
-
}
|
|
1359
|
-
ngOnDestroy() {
|
|
1360
|
-
if (this.subscriptions) {
|
|
1361
|
-
this.subscriptions.unsubscribe();
|
|
1362
|
-
this.subscriptions = null;
|
|
1363
|
-
}
|
|
1364
|
-
}
|
|
1365
|
-
get scrollbarWidth() {
|
|
1366
|
-
return scrollbarWidth();
|
|
1367
|
-
}
|
|
1368
|
-
get rtlScrollLeft() {
|
|
1369
|
-
return rtlScrollLeft();
|
|
1370
|
-
}
|
|
1371
|
-
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 });
|
|
1372
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: BrowserSupportService });
|
|
1373
|
-
}
|
|
1374
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: BrowserSupportService, decorators: [{
|
|
1375
|
-
type: Injectable
|
|
1376
|
-
}], ctorParameters: () => [{ type: i0.NgZone }, { type: i0.ChangeDetectorRef }] });
|
|
1377
|
-
|
|
1378
1301
|
/**
|
|
1379
1302
|
* @hidden
|
|
1380
1303
|
*/
|
|
@@ -8537,7 +8460,7 @@ class ListComponent {
|
|
|
8537
8460
|
}
|
|
8538
8461
|
return element.offsetLeft;
|
|
8539
8462
|
}
|
|
8540
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ListComponent, deps: [{ token: SCROLLER_FACTORY_TOKEN }, { token: ChangeNotificationService }, { token: SuspendService }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: ScrollSyncService }, { token: ResizeService }, { token: EditService }, { token:
|
|
8463
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ListComponent, deps: [{ token: SCROLLER_FACTORY_TOKEN }, { token: ChangeNotificationService }, { token: SuspendService }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: ScrollSyncService }, { token: ResizeService }, { token: EditService }, { token: i1$4.ScrollbarService }, { token: NavigationService }, { token: ScrollRequestService }, { token: i1$1.LocalizationService }, { token: ColumnResizingService }, { token: i0.ChangeDetectorRef }, { token: PDFService }, { token: ColumnInfoService }], target: i0.ɵɵFactoryTarget.Component });
|
|
8541
8464
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.20", type: ListComponent, isStandalone: true, selector: "kendo-treelist-list", inputs: { view: "view", total: "total", rowHeight: "rowHeight", take: "take", skip: "skip", columns: "columns", noRecordsTemplate: "noRecordsTemplate", filterable: "filterable", rowClass: "rowClass", loading: "loading", trackBy: "trackBy", virtualColumns: "virtualColumns", isVirtual: "isVirtual", expandIcons: "expandIcons" }, outputs: { contentScroll: "contentScroll", pageChange: "pageChange", scrollBottom: "scrollBottom" }, host: { properties: { "class.k-grid-container": "this.hostClass", "attr.role": "this.hostRole" } }, providers: [
|
|
8542
8465
|
{
|
|
8543
8466
|
provide: SCROLLER_FACTORY_TOKEN,
|
|
@@ -8772,7 +8695,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
8772
8695
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
8773
8696
|
type: Inject,
|
|
8774
8697
|
args: [SCROLLER_FACTORY_TOKEN]
|
|
8775
|
-
}] }, { type: ChangeNotificationService }, { type: SuspendService }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: ScrollSyncService }, { type: ResizeService }, { type: EditService }, { type:
|
|
8698
|
+
}] }, { type: ChangeNotificationService }, { type: SuspendService }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: ScrollSyncService }, { type: ResizeService }, { type: EditService }, { type: i1$4.ScrollbarService }, { type: NavigationService }, { type: ScrollRequestService }, { type: i1$1.LocalizationService }, { type: ColumnResizingService }, { type: i0.ChangeDetectorRef }, { type: PDFService }, { type: ColumnInfoService }], propDecorators: { hostClass: [{
|
|
8776
8699
|
type: HostBinding,
|
|
8777
8700
|
args: ["class.k-grid-container"]
|
|
8778
8701
|
}], hostRole: [{
|
|
@@ -18642,9 +18565,8 @@ class TreeListComponent {
|
|
|
18642
18565
|
this.dragTargetContainer?.notify();
|
|
18643
18566
|
this.dropTargetContainer?.notify();
|
|
18644
18567
|
}
|
|
18645
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: TreeListComponent, deps: [{ token:
|
|
18568
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: TreeListComponent, deps: [{ token: i1$4.ScrollbarService }, { token: i0.ElementRef }, { token: ChangeNotificationService }, { token: EditService }, { token: FilterService }, { token: PDFService }, { token: ResponsiveService }, { token: i0.Renderer2 }, { token: ExcelService }, { token: i0.NgZone }, { token: ScrollSyncService }, { token: DomEventsService }, { token: ColumnResizingService }, { token: i0.ChangeDetectorRef }, { token: ColumnReorderService }, { token: ColumnInfoService }, { token: NavigationService }, { token: SortService }, { token: ScrollRequestService }, { token: ExpandStateService }, { token: OptionChangesService }, { token: SelectionService }, { token: i1$1.LocalizationService }, { token: ContextService }, { token: RowReorderService }], target: i0.ɵɵFactoryTarget.Component });
|
|
18646
18569
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.20", type: TreeListComponent, isStandalone: true, selector: "kendo-treelist", inputs: { ariaLabel: ["aria-label", "ariaLabel"], data: "data", pageSize: "pageSize", height: "height", rowHeight: "rowHeight", skip: "skip", scrollable: "scrollable", sort: "sort", trackBy: "trackBy", filter: "filter", virtualColumns: "virtualColumns", filterable: "filterable", sortable: "sortable", pageable: "pageable", navigable: "navigable", autoSize: "autoSize", rowClass: "rowClass", resizable: "resizable", reorderable: "reorderable", loading: "loading", columnMenu: "columnMenu", hideHeader: "hideHeader", idField: "idField", selectable: "selectable", isSelected: "isSelected", rowReorderable: "rowReorderable", columnsRef: ["columns", "columnsRef"], fetchChildren: "fetchChildren", hasChildren: "hasChildren", isExpanded: "isExpanded" }, outputs: { selectionChange: "selectionChange", filterChange: "filterChange", pageChange: "pageChange", sortChange: "sortChange", dataStateChange: "dataStateChange", edit: "edit", cancel: "cancel", save: "save", remove: "remove", add: "add", cellClose: "cellClose", cellClick: "cellClick", pdfExport: "pdfExport", excelExport: "excelExport", columnResize: "columnResize", columnReorder: "columnReorder", columnVisibilityChange: "columnVisibilityChange", columnLockedChange: "columnLockedChange", scrollBottom: "scrollBottom", contentScroll: "contentScroll", expandEvent: "expand", collapseEvent: "collapse", expandStateChange: "expandStateChange", rowReorder: "rowReorder" }, host: { properties: { "attr.dir": "this.dir", "class.k-grid": "this.hostClasses", "class.k-treelist": "this.hostClasses", "class.k-grid-lockedcolumns": "this.lockedClasses", "class.k-grid-virtual": "this.virtualClasses", "class.k-grid-no-scrollbar": "this.noScrollbarClass" } }, providers: [
|
|
18647
|
-
BrowserSupportService,
|
|
18648
18570
|
LocalizationService,
|
|
18649
18571
|
ColumnInfoService,
|
|
18650
18572
|
ChangeNotificationService,
|
|
@@ -19195,7 +19117,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
19195
19117
|
encapsulation: ViewEncapsulation.None,
|
|
19196
19118
|
exportAs: 'kendoTreeList',
|
|
19197
19119
|
providers: [
|
|
19198
|
-
BrowserSupportService,
|
|
19199
19120
|
LocalizationService,
|
|
19200
19121
|
ColumnInfoService,
|
|
19201
19122
|
ChangeNotificationService,
|
|
@@ -19743,7 +19664,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
19743
19664
|
standalone: true,
|
|
19744
19665
|
imports: [LocalizedMessagesDirective, NgTemplateOutlet, ToolbarComponent, DragTargetContainerDirective, DropTargetContainerDirective, TableDirective, ColGroupComponent, HeaderComponent, ResizableContainerDirective, ListComponent, DraggableDirective, MarqueeDirective, TableBodyComponent, LoadingComponent, ...KENDO_PAGER, IconWrapperComponent]
|
|
19745
19666
|
}]
|
|
19746
|
-
}], ctorParameters: () => [{ type:
|
|
19667
|
+
}], ctorParameters: () => [{ type: i1$4.ScrollbarService }, { type: i0.ElementRef }, { type: ChangeNotificationService }, { type: EditService }, { type: FilterService }, { type: PDFService }, { type: ResponsiveService }, { type: i0.Renderer2 }, { type: ExcelService }, { type: i0.NgZone }, { type: ScrollSyncService }, { type: DomEventsService }, { type: ColumnResizingService }, { type: i0.ChangeDetectorRef }, { type: ColumnReorderService }, { type: ColumnInfoService }, { type: NavigationService }, { type: SortService }, { type: ScrollRequestService }, { type: ExpandStateService }, { type: OptionChangesService }, { type: SelectionService }, { type: i1$1.LocalizationService }, { type: ContextService }, { type: RowReorderService }], propDecorators: { ariaLabel: [{
|
|
19747
19668
|
type: Input,
|
|
19748
19669
|
args: ['aria-label']
|
|
19749
19670
|
}], data: [{
|
|
@@ -19,7 +19,7 @@ export type FilterableSettings = boolean | 'row' | 'menu' | 'menu, row';
|
|
|
19
19
|
/**
|
|
20
20
|
* @hidden
|
|
21
21
|
*/
|
|
22
|
-
export declare const isFilterable: (settings: FilterableSettings) => settings is true | "
|
|
22
|
+
export declare const isFilterable: (settings: FilterableSettings) => settings is true | "row" | "menu" | "menu, row";
|
|
23
23
|
/**
|
|
24
24
|
* @hidden
|
|
25
25
|
*/
|
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": 1774450112,
|
|
11
|
+
"version": "23.3.0-develop.13",
|
|
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-treelist",
|
|
3
|
-
"version": "23.3.0-develop.
|
|
3
|
+
"version": "23.3.0-develop.13",
|
|
4
4
|
"description": "Kendo UI TreeList for Angular - Display hierarchical data in an Angular tree grid view that supports sorting, filtering, paging, and much more.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"package": {
|
|
25
25
|
"productName": "Kendo UI for Angular",
|
|
26
26
|
"productCode": "KENDOUIANGULAR",
|
|
27
|
-
"publishDate":
|
|
27
|
+
"publishDate": 1774450112,
|
|
28
28
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
29
29
|
}
|
|
30
30
|
},
|
|
@@ -37,26 +37,26 @@
|
|
|
37
37
|
"@progress/kendo-data-query": "^1.7.3",
|
|
38
38
|
"@progress/kendo-drawing": "^1.24.1",
|
|
39
39
|
"@progress/kendo-licensing": "^1.10.0",
|
|
40
|
-
"@progress/kendo-angular-buttons": "23.3.0-develop.
|
|
41
|
-
"@progress/kendo-angular-common": "23.3.0-develop.
|
|
42
|
-
"@progress/kendo-angular-dateinputs": "23.3.0-develop.
|
|
43
|
-
"@progress/kendo-angular-dropdowns": "23.3.0-develop.
|
|
44
|
-
"@progress/kendo-angular-excel-export": "23.3.0-develop.
|
|
45
|
-
"@progress/kendo-angular-icons": "23.3.0-develop.
|
|
46
|
-
"@progress/kendo-angular-inputs": "23.3.0-develop.
|
|
47
|
-
"@progress/kendo-angular-intl": "23.3.0-develop.
|
|
48
|
-
"@progress/kendo-angular-l10n": "23.3.0-develop.
|
|
49
|
-
"@progress/kendo-angular-label": "23.3.0-develop.
|
|
50
|
-
"@progress/kendo-angular-pager": "23.3.0-develop.
|
|
51
|
-
"@progress/kendo-angular-pdf-export": "23.3.0-develop.
|
|
52
|
-
"@progress/kendo-angular-popup": "23.3.0-develop.
|
|
53
|
-
"@progress/kendo-angular-toolbar": "23.3.0-develop.
|
|
54
|
-
"@progress/kendo-angular-utils": "23.3.0-develop.
|
|
40
|
+
"@progress/kendo-angular-buttons": "23.3.0-develop.13",
|
|
41
|
+
"@progress/kendo-angular-common": "23.3.0-develop.13",
|
|
42
|
+
"@progress/kendo-angular-dateinputs": "23.3.0-develop.13",
|
|
43
|
+
"@progress/kendo-angular-dropdowns": "23.3.0-develop.13",
|
|
44
|
+
"@progress/kendo-angular-excel-export": "23.3.0-develop.13",
|
|
45
|
+
"@progress/kendo-angular-icons": "23.3.0-develop.13",
|
|
46
|
+
"@progress/kendo-angular-inputs": "23.3.0-develop.13",
|
|
47
|
+
"@progress/kendo-angular-intl": "23.3.0-develop.13",
|
|
48
|
+
"@progress/kendo-angular-l10n": "23.3.0-develop.13",
|
|
49
|
+
"@progress/kendo-angular-label": "23.3.0-develop.13",
|
|
50
|
+
"@progress/kendo-angular-pager": "23.3.0-develop.13",
|
|
51
|
+
"@progress/kendo-angular-pdf-export": "23.3.0-develop.13",
|
|
52
|
+
"@progress/kendo-angular-popup": "23.3.0-develop.13",
|
|
53
|
+
"@progress/kendo-angular-toolbar": "23.3.0-develop.13",
|
|
54
|
+
"@progress/kendo-angular-utils": "23.3.0-develop.13",
|
|
55
55
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
58
|
"tslib": "^2.3.1",
|
|
59
|
-
"@progress/kendo-angular-schematics": "23.3.0-develop.
|
|
59
|
+
"@progress/kendo-angular-schematics": "23.3.0-develop.13",
|
|
60
60
|
"@progress/kendo-common": "^1.0.1",
|
|
61
61
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
62
62
|
},
|
|
@@ -16,7 +16,7 @@ import { RowClassFn } from './common/row-class';
|
|
|
16
16
|
import { ScrollSyncService } from "../scrolling/scroll-sync.service";
|
|
17
17
|
import { ResizeService } from "../layout/resize.service";
|
|
18
18
|
import { ResizeSensorComponent } from "@progress/kendo-angular-common";
|
|
19
|
-
import {
|
|
19
|
+
import { ScrollbarService } from '@progress/kendo-angular-common';
|
|
20
20
|
import { EditService } from '../editing/edit.service';
|
|
21
21
|
import { NavigationService } from '../navigation/navigation.service';
|
|
22
22
|
import { FilterableSettings } from '../filtering/filterable';
|
|
@@ -100,7 +100,7 @@ export declare class ListComponent implements OnInit, OnDestroy, AfterViewInit,
|
|
|
100
100
|
private rtl;
|
|
101
101
|
private columnUpdateFrame;
|
|
102
102
|
private hasLockedContainer;
|
|
103
|
-
constructor(scrollerFactory: any, changeNotification: ChangeNotificationService, suspendService: SuspendService, ngZone: NgZone, renderer: Renderer2, scrollSyncService: ScrollSyncService, resizeService: ResizeService, editService: EditService, supportService:
|
|
103
|
+
constructor(scrollerFactory: any, changeNotification: ChangeNotificationService, suspendService: SuspendService, ngZone: NgZone, renderer: Renderer2, scrollSyncService: ScrollSyncService, resizeService: ResizeService, editService: EditService, supportService: ScrollbarService, navigationService: NavigationService, scrollRequestService: ScrollRequestService, localization: LocalizationService, columnResizingService: ColumnResizingService, changeDetector: ChangeDetectorRef, pdfService: PDFService, columnInfo: ColumnInfoService);
|
|
104
104
|
ngOnInit(): void;
|
|
105
105
|
ngOnChanges(changes: {
|
|
106
106
|
[propertyName: string]: SimpleChange;
|
|
@@ -9,13 +9,13 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
9
9
|
function default_1(options) {
|
|
10
10
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'TreeListModule', package: 'treelist', peerDependencies: {
|
|
11
11
|
// peer dep of the dropdowns
|
|
12
|
-
'@progress/kendo-angular-treeview': '23.3.0-develop.
|
|
12
|
+
'@progress/kendo-angular-treeview': '23.3.0-develop.13',
|
|
13
13
|
// peer dependency of kendo-angular-inputs
|
|
14
|
-
'@progress/kendo-angular-dialog': '23.3.0-develop.
|
|
14
|
+
'@progress/kendo-angular-dialog': '23.3.0-develop.13',
|
|
15
15
|
// peer dependency of kendo-angular-icons
|
|
16
16
|
'@progress/kendo-svg-icons': '^4.0.0',
|
|
17
17
|
// peer dependency of kendo-angular-dateinputs
|
|
18
|
-
'@progress/kendo-angular-navigation': '23.3.0-develop.
|
|
18
|
+
'@progress/kendo-angular-navigation': '23.3.0-develop.13',
|
|
19
19
|
} });
|
|
20
20
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
21
21
|
}
|
package/treelist.component.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
|
9
9
|
import { DragTargetContainerDirective, DragTargetDataFn, DropTargetContainerDirective } from '@progress/kendo-angular-utils';
|
|
10
10
|
import { ScrollMode } from './scrolling/scrollmode';
|
|
11
11
|
import { SortSettings } from './columns/sort-settings';
|
|
12
|
-
import {
|
|
12
|
+
import { ScrollbarService } from '@progress/kendo-angular-common';
|
|
13
13
|
import { TreeListDataResult, ViewCollection } from './data/data.collection';
|
|
14
14
|
import { EditService } from './editing/edit.service';
|
|
15
15
|
import { PageChangeEvent, DataStateChangeEvent } from './data/change-event-args.interface';
|
|
@@ -542,7 +542,7 @@ export declare class TreeListComponent implements AfterContentInit, AfterViewIni
|
|
|
542
542
|
private _showPagerInput;
|
|
543
543
|
private _showPagerPageText;
|
|
544
544
|
private _showPagerItemsText;
|
|
545
|
-
constructor(supportService:
|
|
545
|
+
constructor(supportService: ScrollbarService, wrapper: ElementRef, changeNotification: ChangeNotificationService, editService: EditService, filterService: FilterService, pdfService: PDFService, responsiveService: ResponsiveService, renderer: Renderer2, excelService: ExcelService, ngZone: NgZone, scrollSyncService: ScrollSyncService, domEvents: DomEventsService, columnResizingService: ColumnResizingService, changeDetectorRef: ChangeDetectorRef, columnReorderService: ColumnReorderService, columnInfoService: ColumnInfoService, navigationService: NavigationService, sortService: SortService, scrollRequestService: ScrollRequestService, expandStateService: ExpandStateService, optionChanges: OptionChangesService, selectionService: SelectionService, localization: LocalizationService, ctx: ContextService, rowReorderService: RowReorderService);
|
|
546
546
|
/**
|
|
547
547
|
* @hidden
|
|
548
548
|
*/
|
|
@@ -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
|
-
}
|