@progress/kendo-angular-treelist 23.3.0-develop.8 → 23.3.0
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 +14 -90
- 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
|
|
52
|
+
publishDate: 1775133361,
|
|
53
|
+
version: '23.3.0',
|
|
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
|
*/
|
|
@@ -2741,6 +2664,9 @@ const contains$2 = (parent, node, matchSelf = false) => {
|
|
|
2741
2664
|
* @hidden
|
|
2742
2665
|
*/
|
|
2743
2666
|
const isVisible = (element) => {
|
|
2667
|
+
if (!element?.getBoundingClientRect) {
|
|
2668
|
+
return false;
|
|
2669
|
+
}
|
|
2744
2670
|
const rect = element.getBoundingClientRect();
|
|
2745
2671
|
const hasSize = rect.width > 0 && rect.height > 0;
|
|
2746
2672
|
const hasPosition = rect.x !== 0 && rect.y !== 0;
|
|
@@ -8537,7 +8463,7 @@ class ListComponent {
|
|
|
8537
8463
|
}
|
|
8538
8464
|
return element.offsetLeft;
|
|
8539
8465
|
}
|
|
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:
|
|
8466
|
+
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
8467
|
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
8468
|
{
|
|
8543
8469
|
provide: SCROLLER_FACTORY_TOKEN,
|
|
@@ -8772,7 +8698,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
8772
8698
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
8773
8699
|
type: Inject,
|
|
8774
8700
|
args: [SCROLLER_FACTORY_TOKEN]
|
|
8775
|
-
}] }, { type: ChangeNotificationService }, { type: SuspendService }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: ScrollSyncService }, { type: ResizeService }, { type: EditService }, { type:
|
|
8701
|
+
}] }, { 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
8702
|
type: HostBinding,
|
|
8777
8703
|
args: ["class.k-grid-container"]
|
|
8778
8704
|
}], hostRole: [{
|
|
@@ -9880,7 +9806,7 @@ class FilterCellOperatorsComponent {
|
|
|
9880
9806
|
(keydown)="clearKeydown($event)">
|
|
9881
9807
|
</button>
|
|
9882
9808
|
}
|
|
9883
|
-
`, isInline: true, dependencies: [{ kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "adaptiveTitle", "adaptiveSubtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { kind: "directive", type: FocusableDirective, selector: "[kendoTreeListFocusable],\n [kendoTreeListAddCommand],\n [kendoTreeListEditCommand],\n [kendoTreeListRemoveCommand],\n [kendoTreeListSaveCommand],\n [kendoTreeListCancelCommand]\n ", inputs: ["kendoTreeListFocusable", "enabled", "kendoTreeListAddCommand", "kendoTreeListEditCommand", "kendoTreeListRemoveCommand", "kendoTreeListSaveCommand", "kendoTreeListCancelCommand"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
9809
|
+
`, isInline: true, dependencies: [{ kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "adaptiveTitle", "adaptiveSubtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { kind: "directive", type: FocusableDirective, selector: "[kendoTreeListFocusable],\n [kendoTreeListAddCommand],\n [kendoTreeListEditCommand],\n [kendoTreeListRemoveCommand],\n [kendoTreeListSaveCommand],\n [kendoTreeListCancelCommand]\n ", inputs: ["kendoTreeListFocusable", "enabled", "kendoTreeListAddCommand", "kendoTreeListEditCommand", "kendoTreeListRemoveCommand", "kendoTreeListSaveCommand", "kendoTreeListCancelCommand"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
9884
9810
|
}
|
|
9885
9811
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: FilterCellOperatorsComponent, decorators: [{
|
|
9886
9812
|
type: Component,
|
|
@@ -12888,7 +12814,7 @@ class FilterMenuContainerComponent {
|
|
|
12888
12814
|
</div>
|
|
12889
12815
|
</div>
|
|
12890
12816
|
</form>
|
|
12891
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i4.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i4.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i4.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: FilterMenuHostDirective, selector: "[kendoFilterMenuHost]", inputs: ["filterService", "menuTabbingService"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
12817
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i4.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i4.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i4.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: FilterMenuHostDirective, selector: "[kendoFilterMenuHost]", inputs: ["filterService", "menuTabbingService"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
12892
12818
|
}
|
|
12893
12819
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: FilterMenuContainerComponent, decorators: [{
|
|
12894
12820
|
type: Component,
|
|
@@ -18642,9 +18568,8 @@ class TreeListComponent {
|
|
|
18642
18568
|
this.dragTargetContainer?.notify();
|
|
18643
18569
|
this.dropTargetContainer?.notify();
|
|
18644
18570
|
}
|
|
18645
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: TreeListComponent, deps: [{ token:
|
|
18571
|
+
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
18572
|
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
18573
|
LocalizationService,
|
|
18649
18574
|
ColumnInfoService,
|
|
18650
18575
|
ChangeNotificationService,
|
|
@@ -19195,7 +19120,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
19195
19120
|
encapsulation: ViewEncapsulation.None,
|
|
19196
19121
|
exportAs: 'kendoTreeList',
|
|
19197
19122
|
providers: [
|
|
19198
|
-
BrowserSupportService,
|
|
19199
19123
|
LocalizationService,
|
|
19200
19124
|
ColumnInfoService,
|
|
19201
19125
|
ChangeNotificationService,
|
|
@@ -19743,7 +19667,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
19743
19667
|
standalone: true,
|
|
19744
19668
|
imports: [LocalizedMessagesDirective, NgTemplateOutlet, ToolbarComponent, DragTargetContainerDirective, DropTargetContainerDirective, TableDirective, ColGroupComponent, HeaderComponent, ResizableContainerDirective, ListComponent, DraggableDirective, MarqueeDirective, TableBodyComponent, LoadingComponent, ...KENDO_PAGER, IconWrapperComponent]
|
|
19745
19669
|
}]
|
|
19746
|
-
}], ctorParameters: () => [{ type:
|
|
19670
|
+
}], 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
19671
|
type: Input,
|
|
19748
19672
|
args: ['aria-label']
|
|
19749
19673
|
}], data: [{
|
|
@@ -23532,7 +23456,7 @@ class ColumnChooserComponent {
|
|
|
23532
23456
|
(columnChange)="onChange($event)">
|
|
23533
23457
|
</kendo-treelist-columnlist>
|
|
23534
23458
|
</ng-template>
|
|
23535
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "component", type: ColumnListComponent, selector: "kendo-treelist-columnlist", inputs: ["columns", "autoSync", "ariaLabel", "allowHideAll", "applyText", "resetText", "actionsClass", "isLast", "isExpanded", "service"], outputs: ["reset", "apply", "columnChange"] }] });
|
|
23459
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "component", type: ColumnListComponent, selector: "kendo-treelist-columnlist", inputs: ["columns", "autoSync", "ariaLabel", "allowHideAll", "applyText", "resetText", "actionsClass", "isLast", "isExpanded", "service"], outputs: ["reset", "apply", "columnChange"] }] });
|
|
23536
23460
|
}
|
|
23537
23461
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ColumnChooserComponent, decorators: [{
|
|
23538
23462
|
type: Component,
|
|
@@ -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
|
|
10
|
+
"publishDate": 1775133361,
|
|
11
|
+
"version": "23.3.0",
|
|
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
|
|
3
|
+
"version": "23.3.0",
|
|
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": 1775133361,
|
|
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
|
|
41
|
-
"@progress/kendo-angular-common": "23.3.0
|
|
42
|
-
"@progress/kendo-angular-dateinputs": "23.3.0
|
|
43
|
-
"@progress/kendo-angular-dropdowns": "23.3.0
|
|
44
|
-
"@progress/kendo-angular-excel-export": "23.3.0
|
|
45
|
-
"@progress/kendo-angular-icons": "23.3.0
|
|
46
|
-
"@progress/kendo-angular-inputs": "23.3.0
|
|
47
|
-
"@progress/kendo-angular-intl": "23.3.0
|
|
48
|
-
"@progress/kendo-angular-l10n": "23.3.0
|
|
49
|
-
"@progress/kendo-angular-label": "23.3.0
|
|
50
|
-
"@progress/kendo-angular-pager": "23.3.0
|
|
51
|
-
"@progress/kendo-angular-pdf-export": "23.3.0
|
|
52
|
-
"@progress/kendo-angular-popup": "23.3.0
|
|
53
|
-
"@progress/kendo-angular-toolbar": "23.3.0
|
|
54
|
-
"@progress/kendo-angular-utils": "23.3.0
|
|
40
|
+
"@progress/kendo-angular-buttons": "23.3.0",
|
|
41
|
+
"@progress/kendo-angular-common": "23.3.0",
|
|
42
|
+
"@progress/kendo-angular-dateinputs": "23.3.0",
|
|
43
|
+
"@progress/kendo-angular-dropdowns": "23.3.0",
|
|
44
|
+
"@progress/kendo-angular-excel-export": "23.3.0",
|
|
45
|
+
"@progress/kendo-angular-icons": "23.3.0",
|
|
46
|
+
"@progress/kendo-angular-inputs": "23.3.0",
|
|
47
|
+
"@progress/kendo-angular-intl": "23.3.0",
|
|
48
|
+
"@progress/kendo-angular-l10n": "23.3.0",
|
|
49
|
+
"@progress/kendo-angular-label": "23.3.0",
|
|
50
|
+
"@progress/kendo-angular-pager": "23.3.0",
|
|
51
|
+
"@progress/kendo-angular-pdf-export": "23.3.0",
|
|
52
|
+
"@progress/kendo-angular-popup": "23.3.0",
|
|
53
|
+
"@progress/kendo-angular-toolbar": "23.3.0",
|
|
54
|
+
"@progress/kendo-angular-utils": "23.3.0",
|
|
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
|
|
59
|
+
"@progress/kendo-angular-schematics": "23.3.0",
|
|
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
|
|
12
|
+
'@progress/kendo-angular-treeview': '23.3.0',
|
|
13
13
|
// peer dependency of kendo-angular-inputs
|
|
14
|
-
'@progress/kendo-angular-dialog': '23.3.0
|
|
14
|
+
'@progress/kendo-angular-dialog': '23.3.0',
|
|
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
|
|
18
|
+
'@progress/kendo-angular-navigation': '23.3.0',
|
|
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
|
-
}
|