@progress/kendo-angular-treelist 13.0.0-develop.8 → 13.0.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/esm2020/filtering/cell/autocomplete-filter-cell.component.mjs +12 -1
- package/esm2020/filtering/cell/boolean-filter-cell.component.mjs +18 -1
- package/esm2020/filtering/cell/date-filter-cell.component.mjs +12 -1
- package/esm2020/filtering/cell/filter-cell-operators.component.mjs +21 -1
- package/esm2020/filtering/cell/filter-cell-wrapper.component.mjs +3 -1
- package/esm2020/filtering/cell/numeric-filter-cell.component.mjs +12 -1
- package/esm2020/filtering/cell/string-filter-cell.component.mjs +12 -1
- package/esm2020/filtering/filter-input.directive.mjs +29 -3
- package/esm2020/filtering/menu/boolean-filter-menu.component.mjs +22 -7
- package/esm2020/filtering/menu/date-filter-menu-input.component.mjs +1 -1
- package/esm2020/filtering/menu/numeric-filter-menu-input.component.mjs +1 -1
- package/esm2020/filtering/menu/string-filter-menu-input.component.mjs +19 -8
- package/esm2020/localization/messages.mjs +11 -1
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/rendering/cell.component.mjs +5 -0
- package/esm2020/rendering/header/header.component.mjs +5 -0
- package/esm2020/rendering/list.component.mjs +20 -18
- package/esm2020/treelist.component.mjs +44 -10
- package/fesm2015/progress-kendo-angular-treelist.mjs +246 -67
- package/fesm2020/progress-kendo-angular-treelist.mjs +246 -67
- package/filtering/cell/autocomplete-filter-cell.component.d.ts +4 -0
- package/filtering/cell/boolean-filter-cell.component.d.ts +8 -0
- package/filtering/cell/date-filter-cell.component.d.ts +4 -0
- package/filtering/cell/filter-cell-operators.component.d.ts +14 -1
- package/filtering/cell/numeric-filter-cell.component.d.ts +4 -0
- package/filtering/cell/string-filter-cell.component.d.ts +4 -0
- package/filtering/filter-input.directive.d.ts +7 -1
- package/filtering/menu/boolean-filter-menu.component.d.ts +8 -1
- package/filtering/menu/string-filter-menu-input.component.d.ts +4 -0
- package/localization/messages.d.ts +37 -1
- package/package.json +16 -16
- package/rendering/cell.component.d.ts +1 -0
- package/rendering/header/header.component.d.ts +1 -0
- package/schematics/ngAdd/index.js +3 -3
|
@@ -6,13 +6,13 @@ import * as i0 from '@angular/core';
|
|
|
6
6
|
import { Directive, Optional, EventEmitter, Injectable, QueryList, Input, ContentChildren, ContentChild, InjectionToken, forwardRef, Component, SkipSelf, Host, isDevMode, SecurityContext, Inject, Output, HostBinding, Self, ViewChild, HostListener, ViewChildren, Pipe, ChangeDetectionStrategy, ViewEncapsulation, NgModule } from '@angular/core';
|
|
7
7
|
import * as i4 from '@angular/common';
|
|
8
8
|
import { CommonModule } from '@angular/common';
|
|
9
|
-
import * as
|
|
9
|
+
import * as i4$1 from '@angular/forms';
|
|
10
10
|
import { NG_VALUE_ACCESSOR, FormControl, FormGroup, ReactiveFormsModule, FormsModule } from '@angular/forms';
|
|
11
11
|
import { merge, of, fromEvent, isObservable, BehaviorSubject, Subscription, Subject, zip as zip$1, from, interval, Observable } from 'rxjs';
|
|
12
12
|
import { auditTime, take, switchMap, map, distinctUntilChanged, filter, tap, throttleTime, takeUntil, switchMapTo, debounceTime, delay, bufferCount } from 'rxjs/operators';
|
|
13
13
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
14
14
|
import * as i1$3 from '@progress/kendo-angular-common';
|
|
15
|
-
import { isDocumentAvailable, Keys, isPresent as isPresent$1, anyChanged, isChanged as isChanged$1, guid, ResizeSensorComponent, hasObservers, DraggableModule, ResizeSensorModule, EventsModule } from '@progress/kendo-angular-common';
|
|
15
|
+
import { isDocumentAvailable, Keys, isPresent as isPresent$1, anyChanged, isChanged as isChanged$1, KendoInput, guid, ResizeSensorComponent, hasObservers, DraggableModule, ResizeSensorModule, EventsModule } from '@progress/kendo-angular-common';
|
|
16
16
|
import { orderBy, isCompositeFilterDescriptor, process, aggregateBy } from '@progress/kendo-data-query';
|
|
17
17
|
import * as i1$1 from '@progress/kendo-angular-l10n';
|
|
18
18
|
import { ComponentMessages, LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
@@ -27,15 +27,15 @@ import * as i32 from '@progress/kendo-angular-utils';
|
|
|
27
27
|
import { DragTargetContainerDirective, DropTargetContainerDirective, DragAndDropModule as DragAndDropModule$1 } from '@progress/kendo-angular-utils';
|
|
28
28
|
import * as i3$1 from '@progress/kendo-angular-dropdowns';
|
|
29
29
|
import { DropDownListModule, AutoCompleteModule, DropDownsModule } from '@progress/kendo-angular-dropdowns';
|
|
30
|
-
import * as
|
|
30
|
+
import * as i3$2 from '@progress/kendo-angular-inputs';
|
|
31
31
|
import { NumericTextBoxComponent, InputsModule, NumericTextBoxModule } from '@progress/kendo-angular-inputs';
|
|
32
32
|
import * as i3$3 from '@progress/kendo-angular-dateinputs';
|
|
33
33
|
import { DatePickerModule } from '@progress/kendo-angular-dateinputs';
|
|
34
34
|
import { trigger, state, style, transition, animate } from '@angular/animations';
|
|
35
|
-
import * as i4$
|
|
35
|
+
import * as i4$2 from '@progress/kendo-angular-buttons';
|
|
36
36
|
import { ButtonModule, Button } from '@progress/kendo-angular-buttons';
|
|
37
37
|
import * as i1$4 from '@progress/kendo-angular-intl';
|
|
38
|
-
import * as i4$
|
|
38
|
+
import * as i4$3 from '@progress/kendo-angular-label';
|
|
39
39
|
import { LabelModule } from '@progress/kendo-angular-label';
|
|
40
40
|
import { PDFExportMarginComponent, PDFExportTemplateDirective, PDFExportComponent } from '@progress/kendo-angular-pdf-export';
|
|
41
41
|
import { saveAs } from '@progress/kendo-file-saver';
|
|
@@ -48,8 +48,8 @@ const packageMetadata = {
|
|
|
48
48
|
name: '@progress/kendo-angular-treelist',
|
|
49
49
|
productName: 'Kendo UI for Angular',
|
|
50
50
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
51
|
-
publishDate:
|
|
52
|
-
version: '13.0.0
|
|
51
|
+
publishDate: 1686055815,
|
|
52
|
+
version: '13.0.0',
|
|
53
53
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
54
54
|
};
|
|
55
55
|
|
|
@@ -6041,6 +6041,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
6041
6041
|
*/
|
|
6042
6042
|
class FilterInputDirective {
|
|
6043
6043
|
constructor(valueAccessors, ngZone, element, renderer) {
|
|
6044
|
+
this.element = element;
|
|
6045
|
+
this.renderer = renderer;
|
|
6044
6046
|
this.change = new EventEmitter();
|
|
6045
6047
|
this.composing = false;
|
|
6046
6048
|
this.filterDelay = 500;
|
|
@@ -6062,6 +6064,7 @@ class FilterInputDirective {
|
|
|
6062
6064
|
this.accessor.setDisabledState(value);
|
|
6063
6065
|
}
|
|
6064
6066
|
ngAfterViewInit() {
|
|
6067
|
+
this.addAriaAttributes();
|
|
6065
6068
|
this.accessor.registerOnChange(x => this.filterDelay > 0 ?
|
|
6066
6069
|
this.changeRequests.next(x) :
|
|
6067
6070
|
this.change.emit(x));
|
|
@@ -6087,9 +6090,24 @@ class FilterInputDirective {
|
|
|
6087
6090
|
this.changeRequestsSubscription.unsubscribe();
|
|
6088
6091
|
}
|
|
6089
6092
|
}
|
|
6093
|
+
addAriaAttributes() {
|
|
6094
|
+
const ariaValue = this.columnLabel;
|
|
6095
|
+
if (this.kendoInput && this.kendoInput.focusableId && isDocumentAvailable()) {
|
|
6096
|
+
const focusableElement = this.element.nativeElement.querySelector(`#${this.kendoInput.focusableId}`) ||
|
|
6097
|
+
this.element.nativeElement;
|
|
6098
|
+
this.renderer.setAttribute(focusableElement, 'aria-label', ariaValue);
|
|
6099
|
+
}
|
|
6100
|
+
else {
|
|
6101
|
+
const inputElement = this.element.nativeElement.querySelector('.k-input-inner');
|
|
6102
|
+
const elementToSetLabel = inputElement ? inputElement : this.element.nativeElement;
|
|
6103
|
+
if (ariaValue) {
|
|
6104
|
+
this.renderer.setAttribute(elementToSetLabel, 'aria-label', ariaValue);
|
|
6105
|
+
}
|
|
6106
|
+
}
|
|
6107
|
+
}
|
|
6090
6108
|
}
|
|
6091
6109
|
FilterInputDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: FilterInputDirective, deps: [{ token: NG_VALUE_ACCESSOR, self: true }, { token: i0.NgZone }, { token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
|
|
6092
|
-
FilterInputDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: { filterDelay: "filterDelay", value: "value" }, usesOnChanges: true, ngImport: i0 });
|
|
6110
|
+
FilterInputDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: { filterDelay: "filterDelay", columnLabel: "columnLabel", column: "column", value: "value" }, queries: [{ propertyName: "kendoInput", first: true, predicate: KendoInput, descendants: true, static: true }], usesOnChanges: true, ngImport: i0 });
|
|
6093
6111
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: FilterInputDirective, decorators: [{
|
|
6094
6112
|
type: Directive,
|
|
6095
6113
|
args: [{
|
|
@@ -6100,7 +6118,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
6100
6118
|
}, {
|
|
6101
6119
|
type: Inject,
|
|
6102
6120
|
args: [NG_VALUE_ACCESSOR]
|
|
6103
|
-
}] }, { type: i0.NgZone }, { type: i0.ElementRef }, { type: i0.Renderer2 }]; }, propDecorators: {
|
|
6121
|
+
}] }, { type: i0.NgZone }, { type: i0.ElementRef }, { type: i0.Renderer2 }]; }, propDecorators: { kendoInput: [{
|
|
6122
|
+
type: ContentChild,
|
|
6123
|
+
args: [KendoInput, { static: true }]
|
|
6124
|
+
}], filterDelay: [{
|
|
6125
|
+
type: Input
|
|
6126
|
+
}], columnLabel: [{
|
|
6127
|
+
type: Input
|
|
6128
|
+
}], column: [{
|
|
6104
6129
|
type: Input
|
|
6105
6130
|
}], value: [{
|
|
6106
6131
|
type: Input
|
|
@@ -6296,11 +6321,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
6296
6321
|
* @hidden
|
|
6297
6322
|
*/
|
|
6298
6323
|
class StringFilterMenuInputComponent {
|
|
6299
|
-
constructor() {
|
|
6324
|
+
constructor(localization) {
|
|
6325
|
+
this.localization = localization;
|
|
6300
6326
|
this.operators = [];
|
|
6301
6327
|
}
|
|
6328
|
+
get columnLabel() {
|
|
6329
|
+
const localizationMsg = this.localization.get('filterInputLabel') || '';
|
|
6330
|
+
const columnName = this.column ? this.column.title || this.column.field : '';
|
|
6331
|
+
return replaceMessagePlaceholder(localizationMsg, 'columnName', columnName);
|
|
6332
|
+
}
|
|
6302
6333
|
}
|
|
6303
|
-
StringFilterMenuInputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StringFilterMenuInputComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6334
|
+
StringFilterMenuInputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StringFilterMenuInputComponent, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
6304
6335
|
StringFilterMenuInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: StringFilterMenuInputComponent, selector: "kendo-treelist-string-filter-menu-input", inputs: { operators: "operators", column: "column", filter: "filter", operator: "operator", currentFilter: "currentFilter", filterService: "filterService" }, ngImport: i0, template: `
|
|
6305
6336
|
<kendo-treelist-filter-menu-input-wrapper
|
|
6306
6337
|
[column]="column"
|
|
@@ -6313,10 +6344,11 @@ StringFilterMenuInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
|
6313
6344
|
<input
|
|
6314
6345
|
kendoTextBox
|
|
6315
6346
|
kendoFilterInput
|
|
6347
|
+
[columnLabel]="columnLabel"
|
|
6316
6348
|
[filterDelay]="0"
|
|
6317
6349
|
[ngModel]="currentFilter?.value" />
|
|
6318
6350
|
</kendo-treelist-filter-menu-input-wrapper>
|
|
6319
|
-
`, isInline: true, components: [{ type: FilterMenuInputWrapperComponent, selector: "kendo-treelist-filter-menu-input-wrapper", inputs: ["filterService", "currentFilter"] }], directives: [{ type:
|
|
6351
|
+
`, isInline: true, components: [{ type: FilterMenuInputWrapperComponent, selector: "kendo-treelist-filter-menu-input-wrapper", inputs: ["filterService", "currentFilter"] }], directives: [{ type: i3$2.TextBoxDirective, selector: "input[kendoTextBox]", inputs: ["value"] }, { type: i4$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "column", "value"] }, { type: i4$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] });
|
|
6320
6352
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StringFilterMenuInputComponent, decorators: [{
|
|
6321
6353
|
type: Component,
|
|
6322
6354
|
args: [{
|
|
@@ -6333,12 +6365,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
6333
6365
|
<input
|
|
6334
6366
|
kendoTextBox
|
|
6335
6367
|
kendoFilterInput
|
|
6368
|
+
[columnLabel]="columnLabel"
|
|
6336
6369
|
[filterDelay]="0"
|
|
6337
6370
|
[ngModel]="currentFilter?.value" />
|
|
6338
6371
|
</kendo-treelist-filter-menu-input-wrapper>
|
|
6339
6372
|
`
|
|
6340
6373
|
}]
|
|
6341
|
-
}], propDecorators: { operators: [{
|
|
6374
|
+
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; }, propDecorators: { operators: [{
|
|
6342
6375
|
type: Input
|
|
6343
6376
|
}], column: [{
|
|
6344
6377
|
type: Input
|
|
@@ -6632,7 +6665,7 @@ NumericFilterMenuInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion:
|
|
|
6632
6665
|
[step]="step">
|
|
6633
6666
|
</kendo-numerictextbox>
|
|
6634
6667
|
</kendo-treelist-filter-menu-input-wrapper>
|
|
6635
|
-
`, isInline: true, components: [{ type: FilterMenuInputWrapperComponent, selector: "kendo-treelist-filter-menu-input-wrapper", inputs: ["filterService", "currentFilter"] }, { type:
|
|
6668
|
+
`, isInline: true, components: [{ type: FilterMenuInputWrapperComponent, selector: "kendo-treelist-filter-menu-input-wrapper", inputs: ["filterService", "currentFilter"] }, { type: i3$2.NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode"], outputs: ["valueChange", "focus", "blur"], exportAs: ["kendoNumericTextBox"] }], directives: [{ type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "column", "value"] }] });
|
|
6636
6669
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: NumericFilterMenuInputComponent, decorators: [{
|
|
6637
6670
|
type: Component,
|
|
6638
6671
|
args: [{
|
|
@@ -7019,7 +7052,7 @@ DateFilterMenuInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12
|
|
|
7019
7052
|
>
|
|
7020
7053
|
</kendo-datepicker>
|
|
7021
7054
|
</kendo-treelist-filter-menu-input-wrapper>
|
|
7022
|
-
`, isInline: true, components: [{ type: FilterMenuInputWrapperComponent, selector: "kendo-treelist-filter-menu-input-wrapper", inputs: ["filterService", "currentFilter"] }, { type: i3$3.DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "navigationItemTemplate", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "title", "subtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close"], exportAs: ["kendo-datepicker"] }], directives: [{ type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "value"] }] });
|
|
7055
|
+
`, isInline: true, components: [{ type: FilterMenuInputWrapperComponent, selector: "kendo-treelist-filter-menu-input-wrapper", inputs: ["filterService", "currentFilter"] }, { type: i3$3.DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "navigationItemTemplate", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "title", "subtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close"], exportAs: ["kendo-datepicker"] }], directives: [{ type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "column", "value"] }] });
|
|
7023
7056
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DateFilterMenuInputComponent, decorators: [{
|
|
7024
7057
|
type: Component,
|
|
7025
7058
|
args: [{
|
|
@@ -7342,8 +7375,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
7342
7375
|
* ```
|
|
7343
7376
|
*/
|
|
7344
7377
|
class BooleanFilterMenuComponent extends BooleanFilterComponent {
|
|
7345
|
-
constructor(localization) {
|
|
7378
|
+
constructor(renderer, localization) {
|
|
7346
7379
|
super(null, localization);
|
|
7380
|
+
this.renderer = renderer;
|
|
7347
7381
|
/**
|
|
7348
7382
|
* The current menu filter.
|
|
7349
7383
|
* @type {CompositeFilterDescriptor}
|
|
@@ -7379,12 +7413,22 @@ class BooleanFilterMenuComponent extends BooleanFilterComponent {
|
|
|
7379
7413
|
isSelected(radioValue) {
|
|
7380
7414
|
return this.filtersByField(this.column.field).some(({ value }) => value === radioValue);
|
|
7381
7415
|
}
|
|
7416
|
+
/**
|
|
7417
|
+
* @hidden
|
|
7418
|
+
*/
|
|
7419
|
+
columnLabel() {
|
|
7420
|
+
const elem = this.inputElem.nativeElement;
|
|
7421
|
+
const localizationMsg = this.localization.get('filterInputLabel') || '';
|
|
7422
|
+
const columnName = this.column.title || this.column.field;
|
|
7423
|
+
const fullMessage = replaceMessagePlaceholder(localizationMsg, 'columnName', columnName);
|
|
7424
|
+
this.renderer.setAttribute(elem, 'aria-label', fullMessage);
|
|
7425
|
+
}
|
|
7382
7426
|
}
|
|
7383
|
-
BooleanFilterMenuComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BooleanFilterMenuComponent, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
7384
|
-
BooleanFilterMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: BooleanFilterMenuComponent, selector: "kendo-treelist-boolean-filter-menu", inputs: { filter: "filter", filterService: "filterService" }, host: { properties: { "class.k-filtercell": "this.hostClasses" } }, usesInheritance: true, ngImport: i0, template: `
|
|
7427
|
+
BooleanFilterMenuComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BooleanFilterMenuComponent, deps: [{ token: i0.Renderer2 }, { token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
7428
|
+
BooleanFilterMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: BooleanFilterMenuComponent, selector: "kendo-treelist-boolean-filter-menu", inputs: { filter: "filter", filterService: "filterService" }, host: { properties: { "class.k-filtercell": "this.hostClasses" } }, viewQueries: [{ propertyName: "inputElem", first: true, predicate: ["inputElem"], descendants: true }], usesInheritance: true, ngImport: i0, template: `
|
|
7385
7429
|
<ul class="k-radio-list k-reset">
|
|
7386
7430
|
<li *ngFor="let item of items">
|
|
7387
|
-
<input type="radio"
|
|
7431
|
+
<input #inputElem type="radio"
|
|
7388
7432
|
kendoRadioButton
|
|
7389
7433
|
[name]="idPrefix"
|
|
7390
7434
|
[checked]="isSelected(item.value)"
|
|
@@ -7394,7 +7438,7 @@ BooleanFilterMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
7394
7438
|
<label class="k-radio-label" [attr.for]="radioId(item.value)">{{item.text}}</label>
|
|
7395
7439
|
</li>
|
|
7396
7440
|
</ul>
|
|
7397
|
-
`, isInline: true, directives: [{ type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type:
|
|
7441
|
+
`, isInline: true, directives: [{ type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i3$2.RadioButtonDirective, selector: "input[kendoRadioButton]", inputs: ["size"] }] });
|
|
7398
7442
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BooleanFilterMenuComponent, decorators: [{
|
|
7399
7443
|
type: Component,
|
|
7400
7444
|
args: [{
|
|
@@ -7402,7 +7446,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
7402
7446
|
template: `
|
|
7403
7447
|
<ul class="k-radio-list k-reset">
|
|
7404
7448
|
<li *ngFor="let item of items">
|
|
7405
|
-
<input type="radio"
|
|
7449
|
+
<input #inputElem type="radio"
|
|
7406
7450
|
kendoRadioButton
|
|
7407
7451
|
[name]="idPrefix"
|
|
7408
7452
|
[checked]="isSelected(item.value)"
|
|
@@ -7414,9 +7458,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
7414
7458
|
</ul>
|
|
7415
7459
|
`
|
|
7416
7460
|
}]
|
|
7417
|
-
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; }, propDecorators: { hostClasses: [{
|
|
7461
|
+
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i1$1.LocalizationService }]; }, propDecorators: { hostClasses: [{
|
|
7418
7462
|
type: HostBinding,
|
|
7419
7463
|
args: ['class.k-filtercell']
|
|
7464
|
+
}], inputElem: [{
|
|
7465
|
+
type: ViewChild,
|
|
7466
|
+
args: ['inputElem']
|
|
7420
7467
|
}], filter: [{
|
|
7421
7468
|
type: Input
|
|
7422
7469
|
}], filterService: [{
|
|
@@ -7616,7 +7663,7 @@ FilterMenuContainerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12
|
|
|
7616
7663
|
</div>
|
|
7617
7664
|
</div>
|
|
7618
7665
|
</form>
|
|
7619
|
-
`, isInline: true, directives: [{ type:
|
|
7666
|
+
`, isInline: true, directives: [{ type: i4$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { type: i4$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { type: i4$1.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { type: i4.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { type: i4.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { type: FilterMenuHostDirective, selector: "[kendoFilterMenuHost]", inputs: ["filterService"] }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
7620
7667
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: FilterMenuContainerComponent, decorators: [{
|
|
7621
7668
|
type: Component,
|
|
7622
7669
|
args: [{
|
|
@@ -8855,9 +8902,23 @@ class FilterCellOperatorsComponent {
|
|
|
8855
8902
|
this.subscription.unsubscribe();
|
|
8856
8903
|
}
|
|
8857
8904
|
}
|
|
8905
|
+
/**
|
|
8906
|
+
* @hidden
|
|
8907
|
+
*/
|
|
8908
|
+
get columnLabel() {
|
|
8909
|
+
const localizationMsg = this.localization.get('filterCellOperatorLabel') || '';
|
|
8910
|
+
const columnName = this.column.title || this.column.field;
|
|
8911
|
+
return replaceMessagePlaceholder(localizationMsg, 'columnName', columnName);
|
|
8912
|
+
}
|
|
8913
|
+
/**
|
|
8914
|
+
* @hidden
|
|
8915
|
+
*/
|
|
8916
|
+
messageFor(token) {
|
|
8917
|
+
return this.localization.get(token);
|
|
8918
|
+
}
|
|
8858
8919
|
}
|
|
8859
8920
|
FilterCellOperatorsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: FilterCellOperatorsComponent, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
8860
|
-
FilterCellOperatorsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: FilterCellOperatorsComponent, selector: "kendo-treelist-filter-cell-operators", inputs: { operators: "operators", showButton: "showButton", showOperators: "showOperators", value: "value" }, outputs: { valueChange: "valueChange", clear: "clear" }, host: { properties: { "class.k-filtercell-operator": "this.hostClasses" } }, viewQueries: [{ propertyName: "dropdown", first: true, predicate: ["dropdown"], descendants: true }], ngImport: i0, template: `
|
|
8921
|
+
FilterCellOperatorsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: FilterCellOperatorsComponent, selector: "kendo-treelist-filter-cell-operators", inputs: { operators: "operators", showButton: "showButton", showOperators: "showOperators", value: "value", column: "column" }, outputs: { valueChange: "valueChange", clear: "clear" }, host: { properties: { "class.k-filtercell-operator": "this.hostClasses" } }, viewQueries: [{ propertyName: "dropdown", first: true, predicate: ["dropdown"], descendants: true }], ngImport: i0, template: `
|
|
8861
8922
|
<kendo-dropdownlist
|
|
8862
8923
|
#dropdown
|
|
8863
8924
|
*ngIf="showOperators"
|
|
@@ -8866,6 +8927,7 @@ FilterCellOperatorsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12
|
|
|
8866
8927
|
class="k-dropdown-operator"
|
|
8867
8928
|
(valueChange)="onChange($event)"
|
|
8868
8929
|
[value]="value"
|
|
8930
|
+
[attr.aria-label]="columnLabel"
|
|
8869
8931
|
iconClass="k-i-filter"
|
|
8870
8932
|
[valuePrimitive]="true"
|
|
8871
8933
|
textField="text"
|
|
@@ -8883,7 +8945,7 @@ FilterCellOperatorsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12
|
|
|
8883
8945
|
(click)="clearClick()"
|
|
8884
8946
|
(keydown)="clearKeydown($event)">
|
|
8885
8947
|
</button>
|
|
8886
|
-
`, isInline: true, components: [{ type: i3$1.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["iconClass", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { type: i4$
|
|
8948
|
+
`, isInline: true, components: [{ type: i3$1.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["iconClass", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { type: i4$2.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: FocusableDirective, selector: "[kendoTreeListFocusable],\n [kendoTreeListAddCommand],\n [kendoTreeListEditCommand],\n [kendoTreeListRemoveCommand],\n [kendoTreeListSaveCommand],\n [kendoTreeListCancelCommand]\n ", inputs: ["kendoTreeListFocusable", "enabled", "kendoTreeListAddCommand", "kendoTreeListEditCommand", "kendoTreeListRemoveCommand", "kendoTreeListSaveCommand", "kendoTreeListCancelCommand"] }] });
|
|
8887
8949
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: FilterCellOperatorsComponent, decorators: [{
|
|
8888
8950
|
type: Component,
|
|
8889
8951
|
args: [{
|
|
@@ -8897,6 +8959,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
8897
8959
|
class="k-dropdown-operator"
|
|
8898
8960
|
(valueChange)="onChange($event)"
|
|
8899
8961
|
[value]="value"
|
|
8962
|
+
[attr.aria-label]="columnLabel"
|
|
8900
8963
|
iconClass="k-i-filter"
|
|
8901
8964
|
[valuePrimitive]="true"
|
|
8902
8965
|
textField="text"
|
|
@@ -8930,6 +8993,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
8930
8993
|
type: Input
|
|
8931
8994
|
}], value: [{
|
|
8932
8995
|
type: Input
|
|
8996
|
+
}], column: [{
|
|
8997
|
+
type: Input
|
|
8933
8998
|
}], valueChange: [{
|
|
8934
8999
|
type: Output
|
|
8935
9000
|
}], clear: [{
|
|
@@ -8966,11 +9031,12 @@ FilterCellWrapperComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
8966
9031
|
<kendo-treelist-filter-cell-operators
|
|
8967
9032
|
[showOperators]="showOperators"
|
|
8968
9033
|
[operators]="operators"
|
|
9034
|
+
[column]="column"
|
|
8969
9035
|
(clear)="onClear()"
|
|
8970
9036
|
[showButton]="showButton"
|
|
8971
9037
|
[(value)]="currentOperator">
|
|
8972
9038
|
</kendo-treelist-filter-cell-operators>
|
|
8973
|
-
`, isInline: true, components: [{ type: FilterCellOperatorsComponent, selector: "kendo-treelist-filter-cell-operators", inputs: ["operators", "showButton", "showOperators", "value"], outputs: ["valueChange", "clear"] }] });
|
|
9039
|
+
`, isInline: true, components: [{ type: FilterCellOperatorsComponent, selector: "kendo-treelist-filter-cell-operators", inputs: ["operators", "showButton", "showOperators", "value", "column"], outputs: ["valueChange", "clear"] }] });
|
|
8974
9040
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: FilterCellWrapperComponent, decorators: [{
|
|
8975
9041
|
type: Component,
|
|
8976
9042
|
args: [{
|
|
@@ -8980,6 +9046,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
8980
9046
|
<kendo-treelist-filter-cell-operators
|
|
8981
9047
|
[showOperators]="showOperators"
|
|
8982
9048
|
[operators]="operators"
|
|
9049
|
+
[column]="column"
|
|
8983
9050
|
(clear)="onClear()"
|
|
8984
9051
|
[showButton]="showButton"
|
|
8985
9052
|
[(value)]="currentOperator">
|
|
@@ -9031,6 +9098,14 @@ class StringFilterCellComponent extends StringFilterComponent {
|
|
|
9031
9098
|
*/
|
|
9032
9099
|
this.showOperators = true;
|
|
9033
9100
|
}
|
|
9101
|
+
/**
|
|
9102
|
+
* @hidden
|
|
9103
|
+
*/
|
|
9104
|
+
get columnLabel() {
|
|
9105
|
+
const localizationMsg = this.localization.get('filterInputLabel') || '';
|
|
9106
|
+
const columnName = this.column.title || this.column.field;
|
|
9107
|
+
return replaceMessagePlaceholder(localizationMsg, 'columnName', columnName);
|
|
9108
|
+
}
|
|
9034
9109
|
}
|
|
9035
9110
|
StringFilterCellComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StringFilterCellComponent, deps: [{ token: FilterService }, { token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
9036
9111
|
StringFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: StringFilterCellComponent, selector: "kendo-treelist-string-filter-cell", inputs: { filterDelay: "filterDelay", showOperators: "showOperators" }, usesInheritance: true, ngImport: i0, template: `
|
|
@@ -9044,10 +9119,11 @@ StringFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
|
9044
9119
|
class="k-textbox k-input k-input-md k-rounded-md k-input-solid"
|
|
9045
9120
|
kendoTreeListFocusable
|
|
9046
9121
|
kendoFilterInput
|
|
9122
|
+
[columnLabel]="columnLabel"
|
|
9047
9123
|
[filterDelay]="filterDelay"
|
|
9048
9124
|
[ngModel]="currentFilter?.value" />
|
|
9049
9125
|
</kendo-treelist-filter-wrapper-cell>
|
|
9050
|
-
`, isInline: true, components: [{ type: FilterCellWrapperComponent, selector: "kendo-treelist-filter-wrapper-cell", inputs: ["showOperators"] }], directives: [{ type:
|
|
9126
|
+
`, isInline: true, components: [{ type: FilterCellWrapperComponent, selector: "kendo-treelist-filter-wrapper-cell", inputs: ["showOperators"] }], directives: [{ type: i4$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: FocusableDirective, selector: "[kendoTreeListFocusable],\n [kendoTreeListAddCommand],\n [kendoTreeListEditCommand],\n [kendoTreeListRemoveCommand],\n [kendoTreeListSaveCommand],\n [kendoTreeListCancelCommand]\n ", inputs: ["kendoTreeListFocusable", "enabled", "kendoTreeListAddCommand", "kendoTreeListEditCommand", "kendoTreeListRemoveCommand", "kendoTreeListSaveCommand", "kendoTreeListCancelCommand"] }, { type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "column", "value"] }, { type: i4$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] });
|
|
9051
9127
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StringFilterCellComponent, decorators: [{
|
|
9052
9128
|
type: Component,
|
|
9053
9129
|
args: [{
|
|
@@ -9063,6 +9139,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
9063
9139
|
class="k-textbox k-input k-input-md k-rounded-md k-input-solid"
|
|
9064
9140
|
kendoTreeListFocusable
|
|
9065
9141
|
kendoFilterInput
|
|
9142
|
+
[columnLabel]="columnLabel"
|
|
9066
9143
|
[filterDelay]="filterDelay"
|
|
9067
9144
|
[ngModel]="currentFilter?.value" />
|
|
9068
9145
|
</kendo-treelist-filter-wrapper-cell>
|
|
@@ -9107,6 +9184,14 @@ class NumericFilterCellComponent extends NumericFilterComponent {
|
|
|
9107
9184
|
*/
|
|
9108
9185
|
this.showOperators = true;
|
|
9109
9186
|
}
|
|
9187
|
+
/**
|
|
9188
|
+
* @hidden
|
|
9189
|
+
*/
|
|
9190
|
+
get columnLabel() {
|
|
9191
|
+
const localizationMsg = this.localization.get('filterInputLabel') || '';
|
|
9192
|
+
const columnName = this.column.title || this.column.field;
|
|
9193
|
+
return replaceMessagePlaceholder(localizationMsg, 'columnName', columnName);
|
|
9194
|
+
}
|
|
9110
9195
|
}
|
|
9111
9196
|
NumericFilterCellComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: NumericFilterCellComponent, deps: [{ token: FilterService }, { token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
9112
9197
|
NumericFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: NumericFilterCellComponent, selector: "kendo-treelist-numeric-filter-cell", inputs: { filterDelay: "filterDelay", showOperators: "showOperators" }, usesInheritance: true, ngImport: i0, template: `
|
|
@@ -9119,6 +9204,7 @@ NumericFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
9119
9204
|
<kendo-numerictextbox
|
|
9120
9205
|
kendoTreeListFocusable
|
|
9121
9206
|
kendoFilterInput
|
|
9207
|
+
[columnLabel]="columnLabel"
|
|
9122
9208
|
[filterDelay]="filterDelay"
|
|
9123
9209
|
[autoCorrect]="true"
|
|
9124
9210
|
[value]="currentFilter?.value"
|
|
@@ -9130,7 +9216,7 @@ NumericFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
9130
9216
|
[step]="step">
|
|
9131
9217
|
</kendo-numerictextbox>
|
|
9132
9218
|
</kendo-treelist-filter-wrapper-cell>
|
|
9133
|
-
`, isInline: true, components: [{ type: FilterCellWrapperComponent, selector: "kendo-treelist-filter-wrapper-cell", inputs: ["showOperators"] }, { type:
|
|
9219
|
+
`, isInline: true, components: [{ type: FilterCellWrapperComponent, selector: "kendo-treelist-filter-wrapper-cell", inputs: ["showOperators"] }, { type: i3$2.NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode"], outputs: ["valueChange", "focus", "blur"], exportAs: ["kendoNumericTextBox"] }], directives: [{ type: FocusableDirective, selector: "[kendoTreeListFocusable],\n [kendoTreeListAddCommand],\n [kendoTreeListEditCommand],\n [kendoTreeListRemoveCommand],\n [kendoTreeListSaveCommand],\n [kendoTreeListCancelCommand]\n ", inputs: ["kendoTreeListFocusable", "enabled", "kendoTreeListAddCommand", "kendoTreeListEditCommand", "kendoTreeListRemoveCommand", "kendoTreeListSaveCommand", "kendoTreeListCancelCommand"] }, { type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "column", "value"] }] });
|
|
9134
9220
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: NumericFilterCellComponent, decorators: [{
|
|
9135
9221
|
type: Component,
|
|
9136
9222
|
args: [{
|
|
@@ -9145,6 +9231,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
9145
9231
|
<kendo-numerictextbox
|
|
9146
9232
|
kendoTreeListFocusable
|
|
9147
9233
|
kendoFilterInput
|
|
9234
|
+
[columnLabel]="columnLabel"
|
|
9148
9235
|
[filterDelay]="filterDelay"
|
|
9149
9236
|
[autoCorrect]="true"
|
|
9150
9237
|
[value]="currentFilter?.value"
|
|
@@ -9189,6 +9276,20 @@ class BooleanFilterCellComponent extends BooleanFilterComponent {
|
|
|
9189
9276
|
super.localizationChange();
|
|
9190
9277
|
this.cd.markForCheck();
|
|
9191
9278
|
}
|
|
9279
|
+
/**
|
|
9280
|
+
* @hidden
|
|
9281
|
+
*/
|
|
9282
|
+
messageFor(token) {
|
|
9283
|
+
return this.localization.get(token);
|
|
9284
|
+
}
|
|
9285
|
+
/**
|
|
9286
|
+
* @hidden
|
|
9287
|
+
*/
|
|
9288
|
+
get columnLabel() {
|
|
9289
|
+
const localizationMsg = this.localization.get('booleanFilterCellLabel') || '';
|
|
9290
|
+
const columnName = this.column.title || this.column.field;
|
|
9291
|
+
return replaceMessagePlaceholder(localizationMsg, 'columnName', columnName);
|
|
9292
|
+
}
|
|
9192
9293
|
}
|
|
9193
9294
|
BooleanFilterCellComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BooleanFilterCellComponent, deps: [{ token: FilterService }, { token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
9194
9295
|
BooleanFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: BooleanFilterCellComponent, selector: "kendo-treelist-boolean-filter-cell", usesInheritance: true, ngImport: i0, template: `
|
|
@@ -9200,6 +9301,7 @@ BooleanFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
9200
9301
|
<kendo-dropdownlist
|
|
9201
9302
|
kendoFilterInput
|
|
9202
9303
|
[defaultItem]="defaultItem"
|
|
9304
|
+
[columnLabel]="columnLabel"
|
|
9203
9305
|
[data]="items"
|
|
9204
9306
|
textField="text"
|
|
9205
9307
|
valueField="value"
|
|
@@ -9208,7 +9310,7 @@ BooleanFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
9208
9310
|
[value]="currentFilter?.value">
|
|
9209
9311
|
</kendo-dropdownlist>
|
|
9210
9312
|
</kendo-treelist-filter-wrapper-cell>
|
|
9211
|
-
`, isInline: true, components: [{ type: FilterCellWrapperComponent, selector: "kendo-treelist-filter-wrapper-cell", inputs: ["showOperators"] }, { type: i3$1.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["iconClass", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }], directives: [{ type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "value"] }] });
|
|
9313
|
+
`, isInline: true, components: [{ type: FilterCellWrapperComponent, selector: "kendo-treelist-filter-wrapper-cell", inputs: ["showOperators"] }, { type: i3$1.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["iconClass", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }], directives: [{ type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "column", "value"] }] });
|
|
9212
9314
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BooleanFilterCellComponent, decorators: [{
|
|
9213
9315
|
type: Component,
|
|
9214
9316
|
args: [{
|
|
@@ -9222,6 +9324,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
9222
9324
|
<kendo-dropdownlist
|
|
9223
9325
|
kendoFilterInput
|
|
9224
9326
|
[defaultItem]="defaultItem"
|
|
9327
|
+
[columnLabel]="columnLabel"
|
|
9225
9328
|
[data]="items"
|
|
9226
9329
|
textField="text"
|
|
9227
9330
|
valueField="value"
|
|
@@ -9261,6 +9364,14 @@ class DateFilterCellComponent extends DateFilterComponent {
|
|
|
9261
9364
|
*/
|
|
9262
9365
|
this.showOperators = true;
|
|
9263
9366
|
}
|
|
9367
|
+
/**
|
|
9368
|
+
* @hidden
|
|
9369
|
+
*/
|
|
9370
|
+
get columnLabel() {
|
|
9371
|
+
const localizationMsg = this.localization.get('filterInputLabel') || '';
|
|
9372
|
+
const columnName = this.column.title || this.column.field;
|
|
9373
|
+
return replaceMessagePlaceholder(localizationMsg, 'columnName', columnName);
|
|
9374
|
+
}
|
|
9264
9375
|
}
|
|
9265
9376
|
DateFilterCellComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DateFilterCellComponent, deps: [{ token: FilterService }, { token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
9266
9377
|
DateFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: DateFilterCellComponent, selector: "kendo-treelist-date-filter-cell", inputs: { showOperators: "showOperators" }, usesInheritance: true, ngImport: i0, template: `
|
|
@@ -9275,6 +9386,7 @@ DateFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
9275
9386
|
kendoFilterInput
|
|
9276
9387
|
[value]="currentFilter?.value"
|
|
9277
9388
|
[format]="format"
|
|
9389
|
+
[columnLabel]="columnLabel"
|
|
9278
9390
|
[formatPlaceholder]="formatPlaceholder"
|
|
9279
9391
|
[placeholder]="placeholder"
|
|
9280
9392
|
[activeView]="activeView"
|
|
@@ -9286,7 +9398,7 @@ DateFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
9286
9398
|
>
|
|
9287
9399
|
</kendo-datepicker>
|
|
9288
9400
|
</kendo-treelist-filter-wrapper-cell>
|
|
9289
|
-
`, isInline: true, components: [{ type: FilterCellWrapperComponent, selector: "kendo-treelist-filter-wrapper-cell", inputs: ["showOperators"] }, { type: i3$3.DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "navigationItemTemplate", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "title", "subtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close"], exportAs: ["kendo-datepicker"] }], directives: [{ type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "value"] }] });
|
|
9401
|
+
`, isInline: true, components: [{ type: FilterCellWrapperComponent, selector: "kendo-treelist-filter-wrapper-cell", inputs: ["showOperators"] }, { type: i3$3.DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "navigationItemTemplate", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "title", "subtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close"], exportAs: ["kendo-datepicker"] }], directives: [{ type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "column", "value"] }] });
|
|
9290
9402
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DateFilterCellComponent, decorators: [{
|
|
9291
9403
|
type: Component,
|
|
9292
9404
|
args: [{
|
|
@@ -9303,6 +9415,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
9303
9415
|
kendoFilterInput
|
|
9304
9416
|
[value]="currentFilter?.value"
|
|
9305
9417
|
[format]="format"
|
|
9418
|
+
[columnLabel]="columnLabel"
|
|
9306
9419
|
[formatPlaceholder]="formatPlaceholder"
|
|
9307
9420
|
[placeholder]="placeholder"
|
|
9308
9421
|
[activeView]="activeView"
|
|
@@ -10318,6 +10431,9 @@ class HeaderComponent {
|
|
|
10318
10431
|
get leafColumns() {
|
|
10319
10432
|
return this._leafColumns;
|
|
10320
10433
|
}
|
|
10434
|
+
messageFor(token) {
|
|
10435
|
+
return this.localization.get(token);
|
|
10436
|
+
}
|
|
10321
10437
|
attachTargets() {
|
|
10322
10438
|
if (this.targetSubscription) {
|
|
10323
10439
|
this.targetSubscription.unsubscribe();
|
|
@@ -10508,6 +10624,7 @@ HeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versio
|
|
|
10508
10624
|
<input
|
|
10509
10625
|
type="checkbox"
|
|
10510
10626
|
class="k-checkbox k-checkbox-md k-rounded-md"
|
|
10627
|
+
[attr.aria-label]="messageFor('selectAllRowsCheckboxLabel')"
|
|
10511
10628
|
kendoTreeListFocusable
|
|
10512
10629
|
(click)="selectAllClick($event)" />
|
|
10513
10630
|
</ng-template>
|
|
@@ -10697,6 +10814,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
10697
10814
|
<input
|
|
10698
10815
|
type="checkbox"
|
|
10699
10816
|
class="k-checkbox k-checkbox-md k-rounded-md"
|
|
10817
|
+
[attr.aria-label]="messageFor('selectAllRowsCheckboxLabel')"
|
|
10700
10818
|
kendoTreeListFocusable
|
|
10701
10819
|
(click)="selectAllClick($event)" />
|
|
10702
10820
|
</ng-template>
|
|
@@ -11135,6 +11253,9 @@ class CellComponent {
|
|
|
11135
11253
|
this.caretAltDownIcon;
|
|
11136
11254
|
return icon;
|
|
11137
11255
|
}
|
|
11256
|
+
messageFor(token) {
|
|
11257
|
+
return this.localization.get(token);
|
|
11258
|
+
}
|
|
11138
11259
|
}
|
|
11139
11260
|
CellComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: CellComponent, deps: [{ token: EditService }, { token: i1$1.LocalizationService }, { token: FocusGroup }], target: i0.ɵɵFactoryTarget.Component });
|
|
11140
11261
|
CellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: CellComponent, selector: "[kendoTreeListCell]", inputs: { column: "column", columnIndex: "columnIndex", isNew: "isNew", level: "level", hasChildren: "hasChildren", isExpanded: "isExpanded", loading: "loading", expandIcons: "expandIcons", selected: "selected", dataItem: "dataItem", viewItem: "viewItem" }, host: { properties: { "class.k-command-cell": "this.commandCellClass", "class.k-checkbox-cell": "this.isCheckboxColumn", "class.k-text-nowrap": "this.textNoWrapClass", "class.k-drag-cell": "this.dragHandleCellClass", "class.k-touch-action-none": "this.dragHandleCellClass", "attr.aria-label": "this.dragRowHandleLabel" } }, ngImport: i0, template: `
|
|
@@ -11163,6 +11284,7 @@ CellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
|
|
|
11163
11284
|
<input
|
|
11164
11285
|
type="checkbox"
|
|
11165
11286
|
kendoTreeListFocusable
|
|
11287
|
+
[attr.aria-label]="messageFor('selectRowCheckboxLabel')"
|
|
11166
11288
|
class="k-checkbox k-checkbox-md k-rounded-md"
|
|
11167
11289
|
[checked]="selected" />
|
|
11168
11290
|
</ng-template>
|
|
@@ -11212,7 +11334,7 @@ CellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
|
|
|
11212
11334
|
</ng-container>
|
|
11213
11335
|
</ng-container>
|
|
11214
11336
|
</ng-container>
|
|
11215
|
-
`, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { type:
|
|
11337
|
+
`, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { type: i3$2.NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode"], outputs: ["valueChange", "focus", "blur"], exportAs: ["kendoNumericTextBox"] }, { type: i3$3.DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "navigationItemTemplate", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "title", "subtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close"], exportAs: ["kendo-datepicker"] }], directives: [{ type: i4.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { type: i4.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: FocusableDirective, selector: "[kendoTreeListFocusable],\n [kendoTreeListAddCommand],\n [kendoTreeListEditCommand],\n [kendoTreeListRemoveCommand],\n [kendoTreeListSaveCommand],\n [kendoTreeListCancelCommand]\n ", inputs: ["kendoTreeListFocusable", "enabled", "kendoTreeListAddCommand", "kendoTreeListEditCommand", "kendoTreeListRemoveCommand", "kendoTreeListSaveCommand", "kendoTreeListCancelCommand"] }, { type: i4$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { type: i4$1.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { type: i4.NgSwitchDefault, selector: "[ngSwitchDefault]" }, { type: i4$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }], pipes: { "levelItems": LevelItemsPipe, "valueOf": FieldAccessorPipe } });
|
|
11216
11338
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: CellComponent, decorators: [{
|
|
11217
11339
|
type: Component,
|
|
11218
11340
|
args: [{
|
|
@@ -11243,6 +11365,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
11243
11365
|
<input
|
|
11244
11366
|
type="checkbox"
|
|
11245
11367
|
kendoTreeListFocusable
|
|
11368
|
+
[attr.aria-label]="messageFor('selectRowCheckboxLabel')"
|
|
11246
11369
|
class="k-checkbox k-checkbox-md k-rounded-md"
|
|
11247
11370
|
[checked]="selected" />
|
|
11248
11371
|
</ng-template>
|
|
@@ -12548,8 +12671,8 @@ ListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
|
|
|
12548
12671
|
class="k-table k-grid-table k-table-md"
|
|
12549
12672
|
role="presentation"
|
|
12550
12673
|
[style.width.px]="lockedWidth">
|
|
12551
|
-
<colgroup
|
|
12552
|
-
|
|
12674
|
+
<colgroup
|
|
12675
|
+
kendoTreeListColGroup
|
|
12553
12676
|
[columns]="$any(lockedLeafColumns)">
|
|
12554
12677
|
</colgroup>
|
|
12555
12678
|
<tbody kendoTreeListTableBody
|
|
@@ -12572,16 +12695,17 @@ ListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
|
|
|
12572
12695
|
<div [style.height.px]="totalHeight"></div>
|
|
12573
12696
|
</div>
|
|
12574
12697
|
</div>
|
|
12575
|
-
<div
|
|
12576
|
-
|
|
12577
|
-
|
|
12578
|
-
|
|
12579
|
-
|
|
12698
|
+
<div
|
|
12699
|
+
#container
|
|
12700
|
+
class="k-grid-content k-virtual-content"
|
|
12701
|
+
[kendoTreeListResizableContainer]="lockedLeafColumns.length > 0"
|
|
12702
|
+
[lockedWidth]="lockedWidth + 1"
|
|
12703
|
+
>
|
|
12580
12704
|
<div role="presentation" class="k-grid-table-wrap">
|
|
12581
12705
|
<table [style.width.px]="nonLockedWidth" #table [virtualColumns]="virtualColumns"
|
|
12582
12706
|
class="k-table k-grid-table k-table-md" role="presentation">
|
|
12583
|
-
<colgroup
|
|
12584
|
-
|
|
12707
|
+
<colgroup
|
|
12708
|
+
kendoTreeListColGroup
|
|
12585
12709
|
[columns]="$any(nonLockedColumnsToRender)">
|
|
12586
12710
|
</colgroup>
|
|
12587
12711
|
<tbody kendoTreeListTableBody
|
|
@@ -12633,8 +12757,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
12633
12757
|
class="k-table k-grid-table k-table-md"
|
|
12634
12758
|
role="presentation"
|
|
12635
12759
|
[style.width.px]="lockedWidth">
|
|
12636
|
-
<colgroup
|
|
12637
|
-
|
|
12760
|
+
<colgroup
|
|
12761
|
+
kendoTreeListColGroup
|
|
12638
12762
|
[columns]="$any(lockedLeafColumns)">
|
|
12639
12763
|
</colgroup>
|
|
12640
12764
|
<tbody kendoTreeListTableBody
|
|
@@ -12657,16 +12781,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
12657
12781
|
<div [style.height.px]="totalHeight"></div>
|
|
12658
12782
|
</div>
|
|
12659
12783
|
</div>
|
|
12660
|
-
<div
|
|
12661
|
-
|
|
12662
|
-
|
|
12663
|
-
|
|
12664
|
-
|
|
12784
|
+
<div
|
|
12785
|
+
#container
|
|
12786
|
+
class="k-grid-content k-virtual-content"
|
|
12787
|
+
[kendoTreeListResizableContainer]="lockedLeafColumns.length > 0"
|
|
12788
|
+
[lockedWidth]="lockedWidth + 1"
|
|
12789
|
+
>
|
|
12665
12790
|
<div role="presentation" class="k-grid-table-wrap">
|
|
12666
12791
|
<table [style.width.px]="nonLockedWidth" #table [virtualColumns]="virtualColumns"
|
|
12667
12792
|
class="k-table k-grid-table k-table-md" role="presentation">
|
|
12668
|
-
<colgroup
|
|
12669
|
-
|
|
12793
|
+
<colgroup
|
|
12794
|
+
kendoTreeListColGroup
|
|
12670
12795
|
[columns]="$any(nonLockedColumnsToRender)">
|
|
12671
12796
|
</colgroup>
|
|
12672
12797
|
<tbody kendoTreeListTableBody
|
|
@@ -12945,7 +13070,7 @@ PagerPrevButtonsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
|
12945
13070
|
[attr.aria-label]="textFor('pagerPreviousPage')"
|
|
12946
13071
|
(click)="onButtonClick('prevPage')">
|
|
12947
13072
|
</button>
|
|
12948
|
-
`, isInline: true, components: [{ type: i4$
|
|
13073
|
+
`, isInline: true, components: [{ type: i4$2.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }], directives: [{ type: FocusableDirective, selector: "[kendoTreeListFocusable],\n [kendoTreeListAddCommand],\n [kendoTreeListEditCommand],\n [kendoTreeListRemoveCommand],\n [kendoTreeListSaveCommand],\n [kendoTreeListCancelCommand]\n ", inputs: ["kendoTreeListFocusable", "enabled", "kendoTreeListAddCommand", "kendoTreeListEditCommand", "kendoTreeListRemoveCommand", "kendoTreeListSaveCommand", "kendoTreeListCancelCommand"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
12949
13074
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PagerPrevButtonsComponent, decorators: [{
|
|
12950
13075
|
type: Component,
|
|
12951
13076
|
args: [{
|
|
@@ -13130,7 +13255,7 @@ PagerNumericButtonsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12
|
|
|
13130
13255
|
[attr.title]="pageLabel(end + 1)"
|
|
13131
13256
|
(click)="changePage(end)">...</button>
|
|
13132
13257
|
</div>
|
|
13133
|
-
`, isInline: true, components: [{ type: i4$
|
|
13258
|
+
`, isInline: true, components: [{ type: i4$2.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }], directives: [{ type: FocusableDirective, selector: "[kendoTreeListFocusable],\n [kendoTreeListAddCommand],\n [kendoTreeListEditCommand],\n [kendoTreeListRemoveCommand],\n [kendoTreeListSaveCommand],\n [kendoTreeListCancelCommand]\n ", inputs: ["kendoTreeListFocusable", "enabled", "kendoTreeListAddCommand", "kendoTreeListEditCommand", "kendoTreeListRemoveCommand", "kendoTreeListSaveCommand", "kendoTreeListCancelCommand"] }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
13134
13259
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PagerNumericButtonsComponent, decorators: [{
|
|
13135
13260
|
type: Component,
|
|
13136
13261
|
args: [{
|
|
@@ -13299,7 +13424,7 @@ PagerInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
13299
13424
|
</kendo-numerictextbox>
|
|
13300
13425
|
{{textFor('pagerOf')}} {{totalPages}}
|
|
13301
13426
|
</span>
|
|
13302
|
-
`, isInline: true, components: [{ type:
|
|
13427
|
+
`, isInline: true, components: [{ type: i3$2.NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode"], outputs: ["valueChange", "focus", "blur"], exportAs: ["kendoNumericTextBox"] }], directives: [{ type: FocusableDirective, selector: "[kendoTreeListFocusable],\n [kendoTreeListAddCommand],\n [kendoTreeListEditCommand],\n [kendoTreeListRemoveCommand],\n [kendoTreeListSaveCommand],\n [kendoTreeListCancelCommand]\n ", inputs: ["kendoTreeListFocusable", "enabled", "kendoTreeListAddCommand", "kendoTreeListEditCommand", "kendoTreeListRemoveCommand", "kendoTreeListSaveCommand", "kendoTreeListCancelCommand"] }, { type: i1$3.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }] });
|
|
13303
13428
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PagerInputComponent, decorators: [{
|
|
13304
13429
|
type: Component,
|
|
13305
13430
|
args: [{
|
|
@@ -13403,7 +13528,7 @@ PagerNextButtonsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
|
13403
13528
|
[attr.aria-label]="textFor('pagerLastPage')"
|
|
13404
13529
|
(click)="onButtonClick('lastPage')">
|
|
13405
13530
|
</button>
|
|
13406
|
-
`, isInline: true, components: [{ type: i4$
|
|
13531
|
+
`, isInline: true, components: [{ type: i4$2.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }], directives: [{ type: FocusableDirective, selector: "[kendoTreeListFocusable],\n [kendoTreeListAddCommand],\n [kendoTreeListEditCommand],\n [kendoTreeListRemoveCommand],\n [kendoTreeListSaveCommand],\n [kendoTreeListCancelCommand]\n ", inputs: ["kendoTreeListFocusable", "enabled", "kendoTreeListAddCommand", "kendoTreeListEditCommand", "kendoTreeListRemoveCommand", "kendoTreeListSaveCommand", "kendoTreeListCancelCommand"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
13407
13532
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PagerNextButtonsComponent, decorators: [{
|
|
13408
13533
|
type: Component,
|
|
13409
13534
|
args: [{
|
|
@@ -13603,7 +13728,7 @@ PagerPageSizesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
13603
13728
|
[attr.aria-label]="textFor('pagerItemsPerPage')"
|
|
13604
13729
|
(valueChange)="pageSizeChange($event)"></kendo-dropdownlist>
|
|
13605
13730
|
<kendo-label [for]="dropdownlist" [text]="textFor('pagerItemsPerPage')"></kendo-label>
|
|
13606
|
-
`, isInline: true, components: [{ type: i3$1.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["iconClass", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { type: i4$
|
|
13731
|
+
`, isInline: true, components: [{ type: i3$1.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["iconClass", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { type: i4$3.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }], directives: [{ type: FocusableDirective, selector: "[kendoTreeListFocusable],\n [kendoTreeListAddCommand],\n [kendoTreeListEditCommand],\n [kendoTreeListRemoveCommand],\n [kendoTreeListSaveCommand],\n [kendoTreeListCancelCommand]\n ", inputs: ["kendoTreeListFocusable", "enabled", "kendoTreeListAddCommand", "kendoTreeListEditCommand", "kendoTreeListRemoveCommand", "kendoTreeListSaveCommand", "kendoTreeListCancelCommand"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
13607
13732
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PagerPageSizesComponent, decorators: [{
|
|
13608
13733
|
type: Component,
|
|
13609
13734
|
args: [{
|
|
@@ -14005,7 +14130,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
14005
14130
|
class Messages extends ComponentMessages {
|
|
14006
14131
|
}
|
|
14007
14132
|
Messages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
14008
|
-
Messages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: Messages, inputs: { groupPanelEmpty: "groupPanelEmpty", noRecords: "noRecords", pagerLabel: "pagerLabel", pagerFirstPage: "pagerFirstPage", pagerLastPage: "pagerLastPage", pagerPreviousPage: "pagerPreviousPage", pagerNextPage: "pagerNextPage", pagerPage: "pagerPage", pagerPageNumberInputTitle: "pagerPageNumberInputTitle", pagerItemsPerPage: "pagerItemsPerPage", pagerOf: "pagerOf", pagerItemsTotal: "pagerItemsTotal", selectPage: "selectPage", filter: "filter", 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", 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" }, usesInheritance: true, ngImport: i0 });
|
|
14133
|
+
Messages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: Messages, inputs: { groupPanelEmpty: "groupPanelEmpty", noRecords: "noRecords", pagerLabel: "pagerLabel", pagerFirstPage: "pagerFirstPage", pagerLastPage: "pagerLastPage", pagerPreviousPage: "pagerPreviousPage", pagerNextPage: "pagerNextPage", pagerPage: "pagerPage", pagerPageNumberInputTitle: "pagerPageNumberInputTitle", pagerItemsPerPage: "pagerItemsPerPage", pagerOf: "pagerOf", pagerItemsTotal: "pagerItemsTotal", selectPage: "selectPage", 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", 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" }, usesInheritance: true, ngImport: i0 });
|
|
14009
14134
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, decorators: [{
|
|
14010
14135
|
type: Directive,
|
|
14011
14136
|
args: [{}]
|
|
@@ -14037,6 +14162,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
14037
14162
|
type: Input
|
|
14038
14163
|
}], filter: [{
|
|
14039
14164
|
type: Input
|
|
14165
|
+
}], filterInputLabel: [{
|
|
14166
|
+
type: Input
|
|
14167
|
+
}], filterCellOperatorLabel: [{
|
|
14168
|
+
type: Input
|
|
14169
|
+
}], booleanFilterCellLabel: [{
|
|
14170
|
+
type: Input
|
|
14040
14171
|
}], filterEqOperator: [{
|
|
14041
14172
|
type: Input
|
|
14042
14173
|
}], filterNotEqOperator: [{
|
|
@@ -14119,6 +14250,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
14119
14250
|
type: Input
|
|
14120
14251
|
}], dragRowHandleLabel: [{
|
|
14121
14252
|
type: Input
|
|
14253
|
+
}], selectRowCheckboxLabel: [{
|
|
14254
|
+
type: Input
|
|
14255
|
+
}], selectAllRowsCheckboxLabel: [{
|
|
14256
|
+
type: Input
|
|
14122
14257
|
}] } });
|
|
14123
14258
|
|
|
14124
14259
|
/**
|
|
@@ -16088,6 +16223,12 @@ TreeListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
16088
16223
|
i18n-pagerItemsTotal="kendo.treelist.pagerItemsTotal|The label after the total items count in the TreeList pager"
|
|
16089
16224
|
pagerItemsTotal="items total"
|
|
16090
16225
|
|
|
16226
|
+
i18n-filterCellOperatorLabel="kendo.treelist.filterCellOperatorLabel|The label of the filter cell operators dropdown"
|
|
16227
|
+
filterCellOperatorLabel="{{ 'Filter cell operators for {columnName}' }}"
|
|
16228
|
+
|
|
16229
|
+
i18n-booleanFilterCellLabel="kendo.treelist.booleanFilterCellLabel|The label of the boolean filter cell dropdown"
|
|
16230
|
+
booleanFilterCellLabel="{{ 'Boolean filter cell for {columnName}' }}"
|
|
16231
|
+
|
|
16091
16232
|
i18n-filter="kendo.treelist.filter|The label of the filter cell or icon"
|
|
16092
16233
|
filter="Filter"
|
|
16093
16234
|
|
|
@@ -16169,6 +16310,9 @@ TreeListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
16169
16310
|
i18n-loading="kendo.treelist.loading|The loading text"
|
|
16170
16311
|
loading="Loading"
|
|
16171
16312
|
|
|
16313
|
+
i18n-filterInputLabel="kendo.treelist.filterInputLabel|The label of the filter row and menu inputs"
|
|
16314
|
+
filterInputLabel="{{ '{columnName} Filter' }}"
|
|
16315
|
+
|
|
16172
16316
|
i18n-columnMenu="kendo.treelist.columnMenu|The title of the column menu icon"
|
|
16173
16317
|
columnMenu="Column Menu"
|
|
16174
16318
|
|
|
@@ -16213,8 +16357,15 @@ TreeListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
16213
16357
|
|
|
16214
16358
|
i18n-bottomToolbarLabel="kendo.treelist.bottomToolbarLabel|The label of the TreeList bottom toolbar"
|
|
16215
16359
|
bottomToolbarLabel="Bottom toolbar"
|
|
16360
|
+
|
|
16216
16361
|
i18n-dragRowHandleLabel="kendo.treelist.dragRowHandleLabel|The label for the TreeList drag row handle"
|
|
16217
16362
|
dragRowHandleLabel="Drag row"
|
|
16363
|
+
|
|
16364
|
+
i18n-selectRowCheckboxLabel="kendo.treelist.selectRowCheckboxLabel|The label for the select row checkbox"
|
|
16365
|
+
selectRowCheckboxLabel="Select row"
|
|
16366
|
+
|
|
16367
|
+
i18n-selectAllRowsCheckboxLabel="kendo.treelist.selectAllRowsCheckboxLabel|The label for the select all rows checkbox"
|
|
16368
|
+
selectAllRowsCheckboxLabel="Select all rows"
|
|
16218
16369
|
>
|
|
16219
16370
|
</ng-container>
|
|
16220
16371
|
<kendo-treelist-toolbar
|
|
@@ -16265,8 +16416,8 @@ TreeListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
16265
16416
|
role="presentation"
|
|
16266
16417
|
[style.width.px]="lockedWidth"
|
|
16267
16418
|
class="k-grid-header-table k-table k-table-md">
|
|
16268
|
-
<colgroup
|
|
16269
|
-
|
|
16419
|
+
<colgroup
|
|
16420
|
+
kendoTreeListColGroup
|
|
16270
16421
|
[columns]="$any(lockedLeafColumns)">
|
|
16271
16422
|
</colgroup>
|
|
16272
16423
|
<thead kendoTreeListHeader
|
|
@@ -16293,8 +16444,8 @@ TreeListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
16293
16444
|
[style.width.px]="nonLockedWidth"
|
|
16294
16445
|
[virtualColumns]="virtualColumns"
|
|
16295
16446
|
class="k-grid-header-table k-table k-table-md">
|
|
16296
|
-
<colgroup
|
|
16297
|
-
|
|
16447
|
+
<colgroup
|
|
16448
|
+
kendoTreeListColGroup
|
|
16298
16449
|
[columns]="headerLeafColumns">
|
|
16299
16450
|
</colgroup>
|
|
16300
16451
|
<thead kendoTreeListHeader
|
|
@@ -16346,7 +16497,8 @@ TreeListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
16346
16497
|
<table
|
|
16347
16498
|
class="k-table k-table-md k-grid-header-table"
|
|
16348
16499
|
[style.table-layout]="resizable ? 'fixed' : null">
|
|
16349
|
-
<colgroup
|
|
16500
|
+
<colgroup
|
|
16501
|
+
kendoTreeListColGroup
|
|
16350
16502
|
[columns]="$any(leafColumns)">
|
|
16351
16503
|
</colgroup>
|
|
16352
16504
|
<thead kendoTreeListHeader
|
|
@@ -16498,6 +16650,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
16498
16650
|
i18n-pagerItemsTotal="kendo.treelist.pagerItemsTotal|The label after the total items count in the TreeList pager"
|
|
16499
16651
|
pagerItemsTotal="items total"
|
|
16500
16652
|
|
|
16653
|
+
i18n-filterCellOperatorLabel="kendo.treelist.filterCellOperatorLabel|The label of the filter cell operators dropdown"
|
|
16654
|
+
filterCellOperatorLabel="{{ 'Filter cell operators for {columnName}' }}"
|
|
16655
|
+
|
|
16656
|
+
i18n-booleanFilterCellLabel="kendo.treelist.booleanFilterCellLabel|The label of the boolean filter cell dropdown"
|
|
16657
|
+
booleanFilterCellLabel="{{ 'Boolean filter cell for {columnName}' }}"
|
|
16658
|
+
|
|
16501
16659
|
i18n-filter="kendo.treelist.filter|The label of the filter cell or icon"
|
|
16502
16660
|
filter="Filter"
|
|
16503
16661
|
|
|
@@ -16579,6 +16737,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
16579
16737
|
i18n-loading="kendo.treelist.loading|The loading text"
|
|
16580
16738
|
loading="Loading"
|
|
16581
16739
|
|
|
16740
|
+
i18n-filterInputLabel="kendo.treelist.filterInputLabel|The label of the filter row and menu inputs"
|
|
16741
|
+
filterInputLabel="{{ '{columnName} Filter' }}"
|
|
16742
|
+
|
|
16582
16743
|
i18n-columnMenu="kendo.treelist.columnMenu|The title of the column menu icon"
|
|
16583
16744
|
columnMenu="Column Menu"
|
|
16584
16745
|
|
|
@@ -16623,8 +16784,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
16623
16784
|
|
|
16624
16785
|
i18n-bottomToolbarLabel="kendo.treelist.bottomToolbarLabel|The label of the TreeList bottom toolbar"
|
|
16625
16786
|
bottomToolbarLabel="Bottom toolbar"
|
|
16787
|
+
|
|
16626
16788
|
i18n-dragRowHandleLabel="kendo.treelist.dragRowHandleLabel|The label for the TreeList drag row handle"
|
|
16627
16789
|
dragRowHandleLabel="Drag row"
|
|
16790
|
+
|
|
16791
|
+
i18n-selectRowCheckboxLabel="kendo.treelist.selectRowCheckboxLabel|The label for the select row checkbox"
|
|
16792
|
+
selectRowCheckboxLabel="Select row"
|
|
16793
|
+
|
|
16794
|
+
i18n-selectAllRowsCheckboxLabel="kendo.treelist.selectAllRowsCheckboxLabel|The label for the select all rows checkbox"
|
|
16795
|
+
selectAllRowsCheckboxLabel="Select all rows"
|
|
16628
16796
|
>
|
|
16629
16797
|
</ng-container>
|
|
16630
16798
|
<kendo-treelist-toolbar
|
|
@@ -16675,8 +16843,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
16675
16843
|
role="presentation"
|
|
16676
16844
|
[style.width.px]="lockedWidth"
|
|
16677
16845
|
class="k-grid-header-table k-table k-table-md">
|
|
16678
|
-
<colgroup
|
|
16679
|
-
|
|
16846
|
+
<colgroup
|
|
16847
|
+
kendoTreeListColGroup
|
|
16680
16848
|
[columns]="$any(lockedLeafColumns)">
|
|
16681
16849
|
</colgroup>
|
|
16682
16850
|
<thead kendoTreeListHeader
|
|
@@ -16703,8 +16871,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
16703
16871
|
[style.width.px]="nonLockedWidth"
|
|
16704
16872
|
[virtualColumns]="virtualColumns"
|
|
16705
16873
|
class="k-grid-header-table k-table k-table-md">
|
|
16706
|
-
<colgroup
|
|
16707
|
-
|
|
16874
|
+
<colgroup
|
|
16875
|
+
kendoTreeListColGroup
|
|
16708
16876
|
[columns]="headerLeafColumns">
|
|
16709
16877
|
</colgroup>
|
|
16710
16878
|
<thead kendoTreeListHeader
|
|
@@ -16756,7 +16924,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
16756
16924
|
<table
|
|
16757
16925
|
class="k-table k-table-md k-grid-header-table"
|
|
16758
16926
|
[style.table-layout]="resizable ? 'fixed' : null">
|
|
16759
|
-
<colgroup
|
|
16927
|
+
<colgroup
|
|
16928
|
+
kendoTreeListColGroup
|
|
16760
16929
|
[columns]="$any(leafColumns)">
|
|
16761
16930
|
</colgroup>
|
|
16762
16931
|
<thead kendoTreeListHeader
|
|
@@ -17062,6 +17231,14 @@ class AutoCompleteFilterCellComponent extends BaseFilterCellComponent {
|
|
|
17062
17231
|
get currentOperator() {
|
|
17063
17232
|
return this.currentFilter ? this.currentFilter.operator : "contains";
|
|
17064
17233
|
}
|
|
17234
|
+
/**
|
|
17235
|
+
* @hidden
|
|
17236
|
+
*/
|
|
17237
|
+
get columnLabel() {
|
|
17238
|
+
const localizationMsg = this.localization.get('filterInputLabel') || '';
|
|
17239
|
+
const columnName = this.column.title || this.column.field;
|
|
17240
|
+
return replaceMessagePlaceholder(localizationMsg, 'columnName', columnName);
|
|
17241
|
+
}
|
|
17065
17242
|
}
|
|
17066
17243
|
AutoCompleteFilterCellComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AutoCompleteFilterCellComponent, deps: [{ token: FilterService }, { token: ColumnComponent }, { token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
17067
17244
|
AutoCompleteFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AutoCompleteFilterCellComponent, selector: "kendo-treelist-autocomplete-filter-cell", inputs: { showOperators: "showOperators", column: "column", filter: "filter", data: "data", valueField: "valueField" }, usesInheritance: true, ngImport: i0, template: `
|
|
@@ -17073,11 +17250,12 @@ AutoCompleteFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion:
|
|
|
17073
17250
|
<kendo-autocomplete
|
|
17074
17251
|
kendoFilterInput
|
|
17075
17252
|
[data]="data"
|
|
17253
|
+
[columnLabel]="columnLabel"
|
|
17076
17254
|
[valueField]="valueField"
|
|
17077
17255
|
[value]="currentFilter?.value">
|
|
17078
17256
|
</kendo-autocomplete>
|
|
17079
17257
|
</kendo-treelist-filter-wrapper-cell>
|
|
17080
|
-
`, isInline: true, components: [{ type: FilterCellWrapperComponent, selector: "kendo-treelist-filter-wrapper-cell", inputs: ["showOperators"] }, { type: i3$1.AutoCompleteComponent, selector: "kendo-autocomplete", inputs: ["highlightFirst", "focusableId", "data", "value", "valueField", "placeholder", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "loading", "clearButton", "suggest", "disabled", "itemDisabled", "readonly", "tabindex", "tabIndex", "filterable", "virtual", "size", "rounded", "fillMode"], outputs: ["valueChange", "filterChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoAutoComplete"] }], directives: [{ type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "value"] }] });
|
|
17258
|
+
`, isInline: true, components: [{ type: FilterCellWrapperComponent, selector: "kendo-treelist-filter-wrapper-cell", inputs: ["showOperators"] }, { type: i3$1.AutoCompleteComponent, selector: "kendo-autocomplete", inputs: ["highlightFirst", "focusableId", "data", "value", "valueField", "placeholder", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "loading", "clearButton", "suggest", "disabled", "itemDisabled", "readonly", "tabindex", "tabIndex", "filterable", "virtual", "size", "rounded", "fillMode"], outputs: ["valueChange", "filterChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoAutoComplete"] }], directives: [{ type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "column", "value"] }] });
|
|
17081
17259
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AutoCompleteFilterCellComponent, decorators: [{
|
|
17082
17260
|
type: Component,
|
|
17083
17261
|
args: [{
|
|
@@ -17091,6 +17269,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17091
17269
|
<kendo-autocomplete
|
|
17092
17270
|
kendoFilterInput
|
|
17093
17271
|
[data]="data"
|
|
17272
|
+
[columnLabel]="columnLabel"
|
|
17094
17273
|
[valueField]="valueField"
|
|
17095
17274
|
[value]="currentFilter?.value">
|
|
17096
17275
|
</kendo-autocomplete>
|
|
@@ -18280,7 +18459,7 @@ ColumnChooserComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
|
18280
18459
|
(columnChange)="onChange($event)">
|
|
18281
18460
|
</kendo-treelist-columnlist>
|
|
18282
18461
|
</ng-template>
|
|
18283
|
-
`, isInline: true, components: [{ type: i4$
|
|
18462
|
+
`, isInline: true, components: [{ type: i4$2.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { type: ColumnListComponent, selector: "kendo-treelist-columnlist", inputs: ["columns", "autoSync", "allowHideAll", "applyText", "resetText", "actionsClass"], outputs: ["reset", "apply", "columnChange"] }] });
|
|
18284
18463
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ColumnChooserComponent, decorators: [{
|
|
18285
18464
|
type: Component,
|
|
18286
18465
|
args: [{
|