@progress/kendo-angular-treelist 23.3.0-develop.2 → 23.3.0-develop.21
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 +35 -96
- package/filtering/filterable.d.ts +1 -1
- package/localization/messages.d.ts +5 -1
- package/package-metadata.mjs +2 -2
- package/package.json +18 -18
- package/rendering/header/header.component.d.ts +0 -1
- 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: 1774881217,
|
|
53
|
+
version: '23.3.0-develop.21',
|
|
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,
|
|
@@ -15573,9 +15499,6 @@ class HeaderComponent {
|
|
|
15573
15499
|
isCheckboxColumn(column) {
|
|
15574
15500
|
return isCheckboxColumn(column) && !column.templateRef;
|
|
15575
15501
|
}
|
|
15576
|
-
isRowReorderColumn(column) {
|
|
15577
|
-
return isRowReorderColumn(column);
|
|
15578
|
-
}
|
|
15579
15502
|
isReorderable(column) {
|
|
15580
15503
|
return this.reorderable && column.reorderable;
|
|
15581
15504
|
}
|
|
@@ -15835,9 +15758,12 @@ class HeaderComponent {
|
|
|
15835
15758
|
@if (isCheckboxColumn(column) && !column.title && !column.headerTemplateRef && !$any(column).showSelectAll) {
|
|
15836
15759
|
<span class="k-sr-only">{{messageFor('checkboxColumnHeaderLabel')}}</span>
|
|
15837
15760
|
}
|
|
15838
|
-
@if (
|
|
15761
|
+
@if ($any(column).isRowReorderColumn && !column.title && !column.headerTemplateRef) {
|
|
15839
15762
|
<span class="k-sr-only">{{messageFor('dragColumnHeaderLabel')}}</span>
|
|
15840
15763
|
}
|
|
15764
|
+
@if ($any(column).isCommand && !column.title && !column.headerTemplateRef) {
|
|
15765
|
+
<span class="k-sr-only">{{messageFor('commandColumnHeaderLabel')}}</span>
|
|
15766
|
+
}
|
|
15841
15767
|
@if (resizable) {
|
|
15842
15768
|
<span kendoTreeListColumnHandle
|
|
15843
15769
|
kendoDraggable
|
|
@@ -16071,9 +15997,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
16071
15997
|
@if (isCheckboxColumn(column) && !column.title && !column.headerTemplateRef && !$any(column).showSelectAll) {
|
|
16072
15998
|
<span class="k-sr-only">{{messageFor('checkboxColumnHeaderLabel')}}</span>
|
|
16073
15999
|
}
|
|
16074
|
-
@if (
|
|
16000
|
+
@if ($any(column).isRowReorderColumn && !column.title && !column.headerTemplateRef) {
|
|
16075
16001
|
<span class="k-sr-only">{{messageFor('dragColumnHeaderLabel')}}</span>
|
|
16076
16002
|
}
|
|
16003
|
+
@if ($any(column).isCommand && !column.title && !column.headerTemplateRef) {
|
|
16004
|
+
<span class="k-sr-only">{{messageFor('commandColumnHeaderLabel')}}</span>
|
|
16005
|
+
}
|
|
16077
16006
|
@if (resizable) {
|
|
16078
16007
|
<span kendoTreeListColumnHandle
|
|
16079
16008
|
kendoDraggable
|
|
@@ -16669,8 +16598,12 @@ class Messages extends ComponentMessages {
|
|
|
16669
16598
|
* Sets the screen-reader-only content for the checkbox column header when the select-all checkbox is not displayed.
|
|
16670
16599
|
*/
|
|
16671
16600
|
checkboxColumnHeaderLabel;
|
|
16601
|
+
/**
|
|
16602
|
+
* Sets the screen-reader-only content for the command column header.
|
|
16603
|
+
*/
|
|
16604
|
+
commandColumnHeaderLabel;
|
|
16672
16605
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
16673
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.20", type: Messages, isStandalone: true, inputs: { groupPanelEmpty: "groupPanelEmpty", noRecords: "noRecords", pagerLabel: "pagerLabel", pagerInputLabel: "pagerInputLabel", pagerFirstPage: "pagerFirstPage", pagerLastPage: "pagerLastPage", pagerPreviousPage: "pagerPreviousPage", pagerNextPage: "pagerNextPage", pagerPage: "pagerPage", pagerPageNumberInputTitle: "pagerPageNumberInputTitle", pagerItemsPerPage: "pagerItemsPerPage", pagerOf: "pagerOf", pagerItemsTotal: "pagerItemsTotal", pagerSelectPage: "pagerSelectPage", filter: "filter", filterInputLabel: "filterInputLabel", filterCellOperatorLabel: "filterCellOperatorLabel", booleanFilterCellLabel: "booleanFilterCellLabel", filterEqOperator: "filterEqOperator", filterNotEqOperator: "filterNotEqOperator", filterIsNullOperator: "filterIsNullOperator", filterIsNotNullOperator: "filterIsNotNullOperator", filterIsEmptyOperator: "filterIsEmptyOperator", filterIsNotEmptyOperator: "filterIsNotEmptyOperator", filterStartsWithOperator: "filterStartsWithOperator", filterContainsOperator: "filterContainsOperator", filterNotContainsOperator: "filterNotContainsOperator", filterEndsWithOperator: "filterEndsWithOperator", filterGteOperator: "filterGteOperator", filterGtOperator: "filterGtOperator", filterLteOperator: "filterLteOperator", filterLtOperator: "filterLtOperator", filterIsTrue: "filterIsTrue", filterIsFalse: "filterIsFalse", filterBooleanAll: "filterBooleanAll", filterAfterOrEqualOperator: "filterAfterOrEqualOperator", filterAfterOperator: "filterAfterOperator", filterBeforeOperator: "filterBeforeOperator", filterBeforeOrEqualOperator: "filterBeforeOrEqualOperator", filterFilterButton: "filterFilterButton", filterClearButton: "filterClearButton", filterAndLogic: "filterAndLogic", filterOrLogic: "filterOrLogic", filterDateToday: "filterDateToday", filterDateToggle: "filterDateToggle", filterNumericDecrement: "filterNumericDecrement", filterNumericIncrement: "filterNumericIncrement", filterMenuOperatorsDropDownLabel: "filterMenuOperatorsDropDownLabel", filterMenuLogicDropDownLabel: "filterMenuLogicDropDownLabel", loading: "loading", columnMenu: "columnMenu", columns: "columns", lock: "lock", unlock: "unlock", sortable: "sortable", sortAscending: "sortAscending", sortDescending: "sortDescending", sortedAscending: "sortedAscending", sortedDescending: "sortedDescending", sortedDefault: "sortedDefault", columnsApply: "columnsApply", columnsReset: "columnsReset", topToolbarLabel: "topToolbarLabel", bottomToolbarLabel: "bottomToolbarLabel", dragRowHandleLabel: "dragRowHandleLabel", selectRowCheckboxLabel: "selectRowCheckboxLabel", selectAllRowsCheckboxLabel: "selectAllRowsCheckboxLabel", autosizeThisColumn: "autosizeThisColumn", autosizeAllColumns: "autosizeAllColumns", filterMenuTitle: "filterMenuTitle", dragColumnHeaderLabel: "dragColumnHeaderLabel", checkboxColumnHeaderLabel: "checkboxColumnHeaderLabel" }, usesInheritance: true, ngImport: i0 });
|
|
16606
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.20", type: Messages, isStandalone: true, inputs: { groupPanelEmpty: "groupPanelEmpty", noRecords: "noRecords", pagerLabel: "pagerLabel", pagerInputLabel: "pagerInputLabel", pagerFirstPage: "pagerFirstPage", pagerLastPage: "pagerLastPage", pagerPreviousPage: "pagerPreviousPage", pagerNextPage: "pagerNextPage", pagerPage: "pagerPage", pagerPageNumberInputTitle: "pagerPageNumberInputTitle", pagerItemsPerPage: "pagerItemsPerPage", pagerOf: "pagerOf", pagerItemsTotal: "pagerItemsTotal", pagerSelectPage: "pagerSelectPage", filter: "filter", filterInputLabel: "filterInputLabel", filterCellOperatorLabel: "filterCellOperatorLabel", booleanFilterCellLabel: "booleanFilterCellLabel", filterEqOperator: "filterEqOperator", filterNotEqOperator: "filterNotEqOperator", filterIsNullOperator: "filterIsNullOperator", filterIsNotNullOperator: "filterIsNotNullOperator", filterIsEmptyOperator: "filterIsEmptyOperator", filterIsNotEmptyOperator: "filterIsNotEmptyOperator", filterStartsWithOperator: "filterStartsWithOperator", filterContainsOperator: "filterContainsOperator", filterNotContainsOperator: "filterNotContainsOperator", filterEndsWithOperator: "filterEndsWithOperator", filterGteOperator: "filterGteOperator", filterGtOperator: "filterGtOperator", filterLteOperator: "filterLteOperator", filterLtOperator: "filterLtOperator", filterIsTrue: "filterIsTrue", filterIsFalse: "filterIsFalse", filterBooleanAll: "filterBooleanAll", filterAfterOrEqualOperator: "filterAfterOrEqualOperator", filterAfterOperator: "filterAfterOperator", filterBeforeOperator: "filterBeforeOperator", filterBeforeOrEqualOperator: "filterBeforeOrEqualOperator", filterFilterButton: "filterFilterButton", filterClearButton: "filterClearButton", filterAndLogic: "filterAndLogic", filterOrLogic: "filterOrLogic", filterDateToday: "filterDateToday", filterDateToggle: "filterDateToggle", filterNumericDecrement: "filterNumericDecrement", filterNumericIncrement: "filterNumericIncrement", filterMenuOperatorsDropDownLabel: "filterMenuOperatorsDropDownLabel", filterMenuLogicDropDownLabel: "filterMenuLogicDropDownLabel", loading: "loading", columnMenu: "columnMenu", columns: "columns", lock: "lock", unlock: "unlock", sortable: "sortable", sortAscending: "sortAscending", sortDescending: "sortDescending", sortedAscending: "sortedAscending", sortedDescending: "sortedDescending", sortedDefault: "sortedDefault", columnsApply: "columnsApply", columnsReset: "columnsReset", topToolbarLabel: "topToolbarLabel", bottomToolbarLabel: "bottomToolbarLabel", dragRowHandleLabel: "dragRowHandleLabel", selectRowCheckboxLabel: "selectRowCheckboxLabel", selectAllRowsCheckboxLabel: "selectAllRowsCheckboxLabel", autosizeThisColumn: "autosizeThisColumn", autosizeAllColumns: "autosizeAllColumns", filterMenuTitle: "filterMenuTitle", dragColumnHeaderLabel: "dragColumnHeaderLabel", checkboxColumnHeaderLabel: "checkboxColumnHeaderLabel", commandColumnHeaderLabel: "commandColumnHeaderLabel" }, usesInheritance: true, ngImport: i0 });
|
|
16674
16607
|
}
|
|
16675
16608
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: Messages, decorators: [{
|
|
16676
16609
|
type: Directive,
|
|
@@ -16819,6 +16752,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
16819
16752
|
type: Input
|
|
16820
16753
|
}], checkboxColumnHeaderLabel: [{
|
|
16821
16754
|
type: Input
|
|
16755
|
+
}], commandColumnHeaderLabel: [{
|
|
16756
|
+
type: Input
|
|
16822
16757
|
}] } });
|
|
16823
16758
|
|
|
16824
16759
|
/**
|
|
@@ -18633,9 +18568,8 @@ class TreeListComponent {
|
|
|
18633
18568
|
this.dragTargetContainer?.notify();
|
|
18634
18569
|
this.dropTargetContainer?.notify();
|
|
18635
18570
|
}
|
|
18636
|
-
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 });
|
|
18637
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: [
|
|
18638
|
-
BrowserSupportService,
|
|
18639
18573
|
LocalizationService,
|
|
18640
18574
|
ColumnInfoService,
|
|
18641
18575
|
ChangeNotificationService,
|
|
@@ -18886,6 +18820,9 @@ class TreeListComponent {
|
|
|
18886
18820
|
|
|
18887
18821
|
i18n-checkboxColumnHeaderLabel="kendo.treelist.checkboxColumnHeaderLabel|The screen-reader-only content for the checkbox selection column header"
|
|
18888
18822
|
checkboxColumnHeaderLabel="Selection"
|
|
18823
|
+
|
|
18824
|
+
i18n-commandColumnHeaderLabel="kendo.treelist.commandColumnHeaderLabel|The screen-reader-only content for the command column header"
|
|
18825
|
+
commandColumnHeaderLabel="Command"
|
|
18889
18826
|
>
|
|
18890
18827
|
</ng-container>
|
|
18891
18828
|
@if (showTopToolbar) {
|
|
@@ -19183,7 +19120,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
19183
19120
|
encapsulation: ViewEncapsulation.None,
|
|
19184
19121
|
exportAs: 'kendoTreeList',
|
|
19185
19122
|
providers: [
|
|
19186
|
-
BrowserSupportService,
|
|
19187
19123
|
LocalizationService,
|
|
19188
19124
|
ColumnInfoService,
|
|
19189
19125
|
ChangeNotificationService,
|
|
@@ -19436,6 +19372,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
19436
19372
|
|
|
19437
19373
|
i18n-checkboxColumnHeaderLabel="kendo.treelist.checkboxColumnHeaderLabel|The screen-reader-only content for the checkbox selection column header"
|
|
19438
19374
|
checkboxColumnHeaderLabel="Selection"
|
|
19375
|
+
|
|
19376
|
+
i18n-commandColumnHeaderLabel="kendo.treelist.commandColumnHeaderLabel|The screen-reader-only content for the command column header"
|
|
19377
|
+
commandColumnHeaderLabel="Command"
|
|
19439
19378
|
>
|
|
19440
19379
|
</ng-container>
|
|
19441
19380
|
@if (showTopToolbar) {
|
|
@@ -19728,7 +19667,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
19728
19667
|
standalone: true,
|
|
19729
19668
|
imports: [LocalizedMessagesDirective, NgTemplateOutlet, ToolbarComponent, DragTargetContainerDirective, DropTargetContainerDirective, TableDirective, ColGroupComponent, HeaderComponent, ResizableContainerDirective, ListComponent, DraggableDirective, MarqueeDirective, TableBodyComponent, LoadingComponent, ...KENDO_PAGER, IconWrapperComponent]
|
|
19730
19669
|
}]
|
|
19731
|
-
}], 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: [{
|
|
19732
19671
|
type: Input,
|
|
19733
19672
|
args: ['aria-label']
|
|
19734
19673
|
}], data: [{
|
|
@@ -23517,7 +23456,7 @@ class ColumnChooserComponent {
|
|
|
23517
23456
|
(columnChange)="onChange($event)">
|
|
23518
23457
|
</kendo-treelist-columnlist>
|
|
23519
23458
|
</ng-template>
|
|
23520
|
-
`, 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"] }] });
|
|
23521
23460
|
}
|
|
23522
23461
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ColumnChooserComponent, decorators: [{
|
|
23523
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
|
*/
|
|
@@ -368,6 +368,10 @@ export declare class Messages extends ComponentMessages {
|
|
|
368
368
|
* Sets the screen-reader-only content for the checkbox column header when the select-all checkbox is not displayed.
|
|
369
369
|
*/
|
|
370
370
|
checkboxColumnHeaderLabel: string;
|
|
371
|
+
/**
|
|
372
|
+
* Sets the screen-reader-only content for the command column header.
|
|
373
|
+
*/
|
|
374
|
+
commandColumnHeaderLabel: string;
|
|
371
375
|
static ɵfac: i0.ɵɵFactoryDeclaration<Messages, never>;
|
|
372
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, never, never, { "groupPanelEmpty": { "alias": "groupPanelEmpty"; "required": false; }; "noRecords": { "alias": "noRecords"; "required": false; }; "pagerLabel": { "alias": "pagerLabel"; "required": false; }; "pagerInputLabel": { "alias": "pagerInputLabel"; "required": false; }; "pagerFirstPage": { "alias": "pagerFirstPage"; "required": false; }; "pagerLastPage": { "alias": "pagerLastPage"; "required": false; }; "pagerPreviousPage": { "alias": "pagerPreviousPage"; "required": false; }; "pagerNextPage": { "alias": "pagerNextPage"; "required": false; }; "pagerPage": { "alias": "pagerPage"; "required": false; }; "pagerPageNumberInputTitle": { "alias": "pagerPageNumberInputTitle"; "required": false; }; "pagerItemsPerPage": { "alias": "pagerItemsPerPage"; "required": false; }; "pagerOf": { "alias": "pagerOf"; "required": false; }; "pagerItemsTotal": { "alias": "pagerItemsTotal"; "required": false; }; "pagerSelectPage": { "alias": "pagerSelectPage"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "filterInputLabel": { "alias": "filterInputLabel"; "required": false; }; "filterCellOperatorLabel": { "alias": "filterCellOperatorLabel"; "required": false; }; "booleanFilterCellLabel": { "alias": "booleanFilterCellLabel"; "required": false; }; "filterEqOperator": { "alias": "filterEqOperator"; "required": false; }; "filterNotEqOperator": { "alias": "filterNotEqOperator"; "required": false; }; "filterIsNullOperator": { "alias": "filterIsNullOperator"; "required": false; }; "filterIsNotNullOperator": { "alias": "filterIsNotNullOperator"; "required": false; }; "filterIsEmptyOperator": { "alias": "filterIsEmptyOperator"; "required": false; }; "filterIsNotEmptyOperator": { "alias": "filterIsNotEmptyOperator"; "required": false; }; "filterStartsWithOperator": { "alias": "filterStartsWithOperator"; "required": false; }; "filterContainsOperator": { "alias": "filterContainsOperator"; "required": false; }; "filterNotContainsOperator": { "alias": "filterNotContainsOperator"; "required": false; }; "filterEndsWithOperator": { "alias": "filterEndsWithOperator"; "required": false; }; "filterGteOperator": { "alias": "filterGteOperator"; "required": false; }; "filterGtOperator": { "alias": "filterGtOperator"; "required": false; }; "filterLteOperator": { "alias": "filterLteOperator"; "required": false; }; "filterLtOperator": { "alias": "filterLtOperator"; "required": false; }; "filterIsTrue": { "alias": "filterIsTrue"; "required": false; }; "filterIsFalse": { "alias": "filterIsFalse"; "required": false; }; "filterBooleanAll": { "alias": "filterBooleanAll"; "required": false; }; "filterAfterOrEqualOperator": { "alias": "filterAfterOrEqualOperator"; "required": false; }; "filterAfterOperator": { "alias": "filterAfterOperator"; "required": false; }; "filterBeforeOperator": { "alias": "filterBeforeOperator"; "required": false; }; "filterBeforeOrEqualOperator": { "alias": "filterBeforeOrEqualOperator"; "required": false; }; "filterFilterButton": { "alias": "filterFilterButton"; "required": false; }; "filterClearButton": { "alias": "filterClearButton"; "required": false; }; "filterAndLogic": { "alias": "filterAndLogic"; "required": false; }; "filterOrLogic": { "alias": "filterOrLogic"; "required": false; }; "filterDateToday": { "alias": "filterDateToday"; "required": false; }; "filterDateToggle": { "alias": "filterDateToggle"; "required": false; }; "filterNumericDecrement": { "alias": "filterNumericDecrement"; "required": false; }; "filterNumericIncrement": { "alias": "filterNumericIncrement"; "required": false; }; "filterMenuOperatorsDropDownLabel": { "alias": "filterMenuOperatorsDropDownLabel"; "required": false; }; "filterMenuLogicDropDownLabel": { "alias": "filterMenuLogicDropDownLabel"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "columnMenu": { "alias": "columnMenu"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "lock": { "alias": "lock"; "required": false; }; "unlock": { "alias": "unlock"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "sortAscending": { "alias": "sortAscending"; "required": false; }; "sortDescending": { "alias": "sortDescending"; "required": false; }; "sortedAscending": { "alias": "sortedAscending"; "required": false; }; "sortedDescending": { "alias": "sortedDescending"; "required": false; }; "sortedDefault": { "alias": "sortedDefault"; "required": false; }; "columnsApply": { "alias": "columnsApply"; "required": false; }; "columnsReset": { "alias": "columnsReset"; "required": false; }; "topToolbarLabel": { "alias": "topToolbarLabel"; "required": false; }; "bottomToolbarLabel": { "alias": "bottomToolbarLabel"; "required": false; }; "dragRowHandleLabel": { "alias": "dragRowHandleLabel"; "required": false; }; "selectRowCheckboxLabel": { "alias": "selectRowCheckboxLabel"; "required": false; }; "selectAllRowsCheckboxLabel": { "alias": "selectAllRowsCheckboxLabel"; "required": false; }; "autosizeThisColumn": { "alias": "autosizeThisColumn"; "required": false; }; "autosizeAllColumns": { "alias": "autosizeAllColumns"; "required": false; }; "filterMenuTitle": { "alias": "filterMenuTitle"; "required": false; }; "dragColumnHeaderLabel": { "alias": "dragColumnHeaderLabel"; "required": false; }; "checkboxColumnHeaderLabel": { "alias": "checkboxColumnHeaderLabel"; "required": false; }; }, {}, never, never, true, never>;
|
|
376
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, never, never, { "groupPanelEmpty": { "alias": "groupPanelEmpty"; "required": false; }; "noRecords": { "alias": "noRecords"; "required": false; }; "pagerLabel": { "alias": "pagerLabel"; "required": false; }; "pagerInputLabel": { "alias": "pagerInputLabel"; "required": false; }; "pagerFirstPage": { "alias": "pagerFirstPage"; "required": false; }; "pagerLastPage": { "alias": "pagerLastPage"; "required": false; }; "pagerPreviousPage": { "alias": "pagerPreviousPage"; "required": false; }; "pagerNextPage": { "alias": "pagerNextPage"; "required": false; }; "pagerPage": { "alias": "pagerPage"; "required": false; }; "pagerPageNumberInputTitle": { "alias": "pagerPageNumberInputTitle"; "required": false; }; "pagerItemsPerPage": { "alias": "pagerItemsPerPage"; "required": false; }; "pagerOf": { "alias": "pagerOf"; "required": false; }; "pagerItemsTotal": { "alias": "pagerItemsTotal"; "required": false; }; "pagerSelectPage": { "alias": "pagerSelectPage"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "filterInputLabel": { "alias": "filterInputLabel"; "required": false; }; "filterCellOperatorLabel": { "alias": "filterCellOperatorLabel"; "required": false; }; "booleanFilterCellLabel": { "alias": "booleanFilterCellLabel"; "required": false; }; "filterEqOperator": { "alias": "filterEqOperator"; "required": false; }; "filterNotEqOperator": { "alias": "filterNotEqOperator"; "required": false; }; "filterIsNullOperator": { "alias": "filterIsNullOperator"; "required": false; }; "filterIsNotNullOperator": { "alias": "filterIsNotNullOperator"; "required": false; }; "filterIsEmptyOperator": { "alias": "filterIsEmptyOperator"; "required": false; }; "filterIsNotEmptyOperator": { "alias": "filterIsNotEmptyOperator"; "required": false; }; "filterStartsWithOperator": { "alias": "filterStartsWithOperator"; "required": false; }; "filterContainsOperator": { "alias": "filterContainsOperator"; "required": false; }; "filterNotContainsOperator": { "alias": "filterNotContainsOperator"; "required": false; }; "filterEndsWithOperator": { "alias": "filterEndsWithOperator"; "required": false; }; "filterGteOperator": { "alias": "filterGteOperator"; "required": false; }; "filterGtOperator": { "alias": "filterGtOperator"; "required": false; }; "filterLteOperator": { "alias": "filterLteOperator"; "required": false; }; "filterLtOperator": { "alias": "filterLtOperator"; "required": false; }; "filterIsTrue": { "alias": "filterIsTrue"; "required": false; }; "filterIsFalse": { "alias": "filterIsFalse"; "required": false; }; "filterBooleanAll": { "alias": "filterBooleanAll"; "required": false; }; "filterAfterOrEqualOperator": { "alias": "filterAfterOrEqualOperator"; "required": false; }; "filterAfterOperator": { "alias": "filterAfterOperator"; "required": false; }; "filterBeforeOperator": { "alias": "filterBeforeOperator"; "required": false; }; "filterBeforeOrEqualOperator": { "alias": "filterBeforeOrEqualOperator"; "required": false; }; "filterFilterButton": { "alias": "filterFilterButton"; "required": false; }; "filterClearButton": { "alias": "filterClearButton"; "required": false; }; "filterAndLogic": { "alias": "filterAndLogic"; "required": false; }; "filterOrLogic": { "alias": "filterOrLogic"; "required": false; }; "filterDateToday": { "alias": "filterDateToday"; "required": false; }; "filterDateToggle": { "alias": "filterDateToggle"; "required": false; }; "filterNumericDecrement": { "alias": "filterNumericDecrement"; "required": false; }; "filterNumericIncrement": { "alias": "filterNumericIncrement"; "required": false; }; "filterMenuOperatorsDropDownLabel": { "alias": "filterMenuOperatorsDropDownLabel"; "required": false; }; "filterMenuLogicDropDownLabel": { "alias": "filterMenuLogicDropDownLabel"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "columnMenu": { "alias": "columnMenu"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "lock": { "alias": "lock"; "required": false; }; "unlock": { "alias": "unlock"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "sortAscending": { "alias": "sortAscending"; "required": false; }; "sortDescending": { "alias": "sortDescending"; "required": false; }; "sortedAscending": { "alias": "sortedAscending"; "required": false; }; "sortedDescending": { "alias": "sortedDescending"; "required": false; }; "sortedDefault": { "alias": "sortedDefault"; "required": false; }; "columnsApply": { "alias": "columnsApply"; "required": false; }; "columnsReset": { "alias": "columnsReset"; "required": false; }; "topToolbarLabel": { "alias": "topToolbarLabel"; "required": false; }; "bottomToolbarLabel": { "alias": "bottomToolbarLabel"; "required": false; }; "dragRowHandleLabel": { "alias": "dragRowHandleLabel"; "required": false; }; "selectRowCheckboxLabel": { "alias": "selectRowCheckboxLabel"; "required": false; }; "selectAllRowsCheckboxLabel": { "alias": "selectAllRowsCheckboxLabel"; "required": false; }; "autosizeThisColumn": { "alias": "autosizeThisColumn"; "required": false; }; "autosizeAllColumns": { "alias": "autosizeAllColumns"; "required": false; }; "filterMenuTitle": { "alias": "filterMenuTitle"; "required": false; }; "dragColumnHeaderLabel": { "alias": "dragColumnHeaderLabel"; "required": false; }; "checkboxColumnHeaderLabel": { "alias": "checkboxColumnHeaderLabel"; "required": false; }; "commandColumnHeaderLabel": { "alias": "commandColumnHeaderLabel"; "required": false; }; }, {}, never, never, true, never>;
|
|
373
377
|
}
|
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": 1774881217,
|
|
11
|
+
"version": "23.3.0-develop.21",
|
|
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.21",
|
|
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": 1774881217,
|
|
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.21",
|
|
41
|
+
"@progress/kendo-angular-common": "23.3.0-develop.21",
|
|
42
|
+
"@progress/kendo-angular-dateinputs": "23.3.0-develop.21",
|
|
43
|
+
"@progress/kendo-angular-dropdowns": "23.3.0-develop.21",
|
|
44
|
+
"@progress/kendo-angular-excel-export": "23.3.0-develop.21",
|
|
45
|
+
"@progress/kendo-angular-icons": "23.3.0-develop.21",
|
|
46
|
+
"@progress/kendo-angular-inputs": "23.3.0-develop.21",
|
|
47
|
+
"@progress/kendo-angular-intl": "23.3.0-develop.21",
|
|
48
|
+
"@progress/kendo-angular-l10n": "23.3.0-develop.21",
|
|
49
|
+
"@progress/kendo-angular-label": "23.3.0-develop.21",
|
|
50
|
+
"@progress/kendo-angular-pager": "23.3.0-develop.21",
|
|
51
|
+
"@progress/kendo-angular-pdf-export": "23.3.0-develop.21",
|
|
52
|
+
"@progress/kendo-angular-popup": "23.3.0-develop.21",
|
|
53
|
+
"@progress/kendo-angular-toolbar": "23.3.0-develop.21",
|
|
54
|
+
"@progress/kendo-angular-utils": "23.3.0-develop.21",
|
|
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.21",
|
|
60
60
|
"@progress/kendo-common": "^1.0.1",
|
|
61
61
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
62
62
|
},
|
|
@@ -116,7 +116,6 @@ export declare class HeaderComponent implements AfterViewInit, OnInit, OnChanges
|
|
|
116
116
|
shouldActivate(column: ColumnBase): boolean;
|
|
117
117
|
isInteractive(column: ColumnComponent, prop: string): boolean;
|
|
118
118
|
isCheckboxColumn(column: any): boolean;
|
|
119
|
-
isRowReorderColumn(column: any): boolean;
|
|
120
119
|
private isReorderable;
|
|
121
120
|
protected toggleDirection(field: string, allowUnsort: boolean, initialDirection: "asc" | "desc"): SortDescriptor;
|
|
122
121
|
columnsForLevel(level: number): Array<ColumnBase>;
|
|
@@ -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.21',
|
|
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.21',
|
|
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.21',
|
|
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
|
-
}
|