@progress/kendo-angular-treelist 13.0.0-develop.19 → 13.0.0-develop.20
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-develop.
|
|
51
|
+
publishDate: 1685961291,
|
|
52
|
+
version: '13.0.0-develop.20',
|
|
53
53
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
54
54
|
};
|
|
55
55
|
|
|
@@ -6079,6 +6079,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
6079
6079
|
*/
|
|
6080
6080
|
class FilterInputDirective {
|
|
6081
6081
|
constructor(valueAccessors, ngZone, element, renderer) {
|
|
6082
|
+
this.element = element;
|
|
6083
|
+
this.renderer = renderer;
|
|
6082
6084
|
this.change = new EventEmitter();
|
|
6083
6085
|
this.composing = false;
|
|
6084
6086
|
this.filterDelay = 500;
|
|
@@ -6100,6 +6102,7 @@ class FilterInputDirective {
|
|
|
6100
6102
|
this.accessor.setDisabledState(value);
|
|
6101
6103
|
}
|
|
6102
6104
|
ngAfterViewInit() {
|
|
6105
|
+
this.addAriaAttributes();
|
|
6103
6106
|
this.accessor.registerOnChange(x => this.filterDelay > 0 ?
|
|
6104
6107
|
this.changeRequests.next(x) :
|
|
6105
6108
|
this.change.emit(x));
|
|
@@ -6125,9 +6128,24 @@ class FilterInputDirective {
|
|
|
6125
6128
|
this.changeRequestsSubscription.unsubscribe();
|
|
6126
6129
|
}
|
|
6127
6130
|
}
|
|
6131
|
+
addAriaAttributes() {
|
|
6132
|
+
const ariaValue = this.columnLabel;
|
|
6133
|
+
if (this.kendoInput && this.kendoInput.focusableId && isDocumentAvailable()) {
|
|
6134
|
+
const focusableElement = this.element.nativeElement.querySelector(`#${this.kendoInput.focusableId}`) ||
|
|
6135
|
+
this.element.nativeElement;
|
|
6136
|
+
this.renderer.setAttribute(focusableElement, 'aria-label', ariaValue);
|
|
6137
|
+
}
|
|
6138
|
+
else {
|
|
6139
|
+
const inputElement = this.element.nativeElement.querySelector('.k-input-inner');
|
|
6140
|
+
const elementToSetLabel = inputElement ? inputElement : this.element.nativeElement;
|
|
6141
|
+
if (ariaValue) {
|
|
6142
|
+
this.renderer.setAttribute(elementToSetLabel, 'aria-label', ariaValue);
|
|
6143
|
+
}
|
|
6144
|
+
}
|
|
6145
|
+
}
|
|
6128
6146
|
}
|
|
6129
6147
|
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 });
|
|
6130
|
-
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 });
|
|
6148
|
+
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 });
|
|
6131
6149
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: FilterInputDirective, decorators: [{
|
|
6132
6150
|
type: Directive,
|
|
6133
6151
|
args: [{
|
|
@@ -6140,7 +6158,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
6140
6158
|
type: Inject,
|
|
6141
6159
|
args: [NG_VALUE_ACCESSOR]
|
|
6142
6160
|
}] }, { type: i0.NgZone }, { type: i0.ElementRef }, { type: i0.Renderer2 }];
|
|
6143
|
-
}, propDecorators: {
|
|
6161
|
+
}, propDecorators: { kendoInput: [{
|
|
6162
|
+
type: ContentChild,
|
|
6163
|
+
args: [KendoInput, { static: true }]
|
|
6164
|
+
}], filterDelay: [{
|
|
6165
|
+
type: Input
|
|
6166
|
+
}], columnLabel: [{
|
|
6167
|
+
type: Input
|
|
6168
|
+
}], column: [{
|
|
6144
6169
|
type: Input
|
|
6145
6170
|
}], value: [{
|
|
6146
6171
|
type: Input
|
|
@@ -6336,11 +6361,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
6336
6361
|
* @hidden
|
|
6337
6362
|
*/
|
|
6338
6363
|
class StringFilterMenuInputComponent {
|
|
6339
|
-
constructor() {
|
|
6364
|
+
constructor(localization) {
|
|
6365
|
+
this.localization = localization;
|
|
6340
6366
|
this.operators = [];
|
|
6341
6367
|
}
|
|
6368
|
+
get columnLabel() {
|
|
6369
|
+
const localizationMsg = this.localization.get('filterInputLabel') || '';
|
|
6370
|
+
const columnName = this.column ? this.column.title || this.column.field : '';
|
|
6371
|
+
return replaceMessagePlaceholder(localizationMsg, 'columnName', columnName);
|
|
6372
|
+
}
|
|
6342
6373
|
}
|
|
6343
|
-
StringFilterMenuInputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StringFilterMenuInputComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6374
|
+
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 });
|
|
6344
6375
|
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: `
|
|
6345
6376
|
<kendo-treelist-filter-menu-input-wrapper
|
|
6346
6377
|
[column]="column"
|
|
@@ -6353,10 +6384,11 @@ StringFilterMenuInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
|
6353
6384
|
<input
|
|
6354
6385
|
kendoTextBox
|
|
6355
6386
|
kendoFilterInput
|
|
6387
|
+
[columnLabel]="columnLabel"
|
|
6356
6388
|
[filterDelay]="0"
|
|
6357
6389
|
[ngModel]="currentFilter?.value" />
|
|
6358
6390
|
</kendo-treelist-filter-menu-input-wrapper>
|
|
6359
|
-
`, isInline: true, components: [{ type: FilterMenuInputWrapperComponent, selector: "kendo-treelist-filter-menu-input-wrapper", inputs: ["filterService", "currentFilter"] }], directives: [{ type:
|
|
6391
|
+
`, 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"] }] });
|
|
6360
6392
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StringFilterMenuInputComponent, decorators: [{
|
|
6361
6393
|
type: Component,
|
|
6362
6394
|
args: [{
|
|
@@ -6373,12 +6405,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
6373
6405
|
<input
|
|
6374
6406
|
kendoTextBox
|
|
6375
6407
|
kendoFilterInput
|
|
6408
|
+
[columnLabel]="columnLabel"
|
|
6376
6409
|
[filterDelay]="0"
|
|
6377
6410
|
[ngModel]="currentFilter?.value" />
|
|
6378
6411
|
</kendo-treelist-filter-menu-input-wrapper>
|
|
6379
6412
|
`
|
|
6380
6413
|
}]
|
|
6381
|
-
}], propDecorators: { operators: [{
|
|
6414
|
+
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; }, propDecorators: { operators: [{
|
|
6382
6415
|
type: Input
|
|
6383
6416
|
}], column: [{
|
|
6384
6417
|
type: Input
|
|
@@ -6672,7 +6705,7 @@ NumericFilterMenuInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion:
|
|
|
6672
6705
|
[step]="step">
|
|
6673
6706
|
</kendo-numerictextbox>
|
|
6674
6707
|
</kendo-treelist-filter-menu-input-wrapper>
|
|
6675
|
-
`, isInline: true, components: [{ type: FilterMenuInputWrapperComponent, selector: "kendo-treelist-filter-menu-input-wrapper", inputs: ["filterService", "currentFilter"] }, { type:
|
|
6708
|
+
`, 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"] }] });
|
|
6676
6709
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: NumericFilterMenuInputComponent, decorators: [{
|
|
6677
6710
|
type: Component,
|
|
6678
6711
|
args: [{
|
|
@@ -7059,7 +7092,7 @@ DateFilterMenuInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12
|
|
|
7059
7092
|
>
|
|
7060
7093
|
</kendo-datepicker>
|
|
7061
7094
|
</kendo-treelist-filter-menu-input-wrapper>
|
|
7062
|
-
`, 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"] }] });
|
|
7095
|
+
`, 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"] }] });
|
|
7063
7096
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DateFilterMenuInputComponent, decorators: [{
|
|
7064
7097
|
type: Component,
|
|
7065
7098
|
args: [{
|
|
@@ -7382,8 +7415,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
7382
7415
|
* ```
|
|
7383
7416
|
*/
|
|
7384
7417
|
class BooleanFilterMenuComponent extends BooleanFilterComponent {
|
|
7385
|
-
constructor(localization) {
|
|
7418
|
+
constructor(renderer, localization) {
|
|
7386
7419
|
super(null, localization);
|
|
7420
|
+
this.renderer = renderer;
|
|
7387
7421
|
/**
|
|
7388
7422
|
* The current menu filter.
|
|
7389
7423
|
* @type {CompositeFilterDescriptor}
|
|
@@ -7419,12 +7453,22 @@ class BooleanFilterMenuComponent extends BooleanFilterComponent {
|
|
|
7419
7453
|
isSelected(radioValue) {
|
|
7420
7454
|
return this.filtersByField(this.column.field).some(({ value }) => value === radioValue);
|
|
7421
7455
|
}
|
|
7456
|
+
/**
|
|
7457
|
+
* @hidden
|
|
7458
|
+
*/
|
|
7459
|
+
columnLabel() {
|
|
7460
|
+
const elem = this.inputElem.nativeElement;
|
|
7461
|
+
const localizationMsg = this.localization.get('filterInputLabel') || '';
|
|
7462
|
+
const columnName = this.column.title || this.column.field;
|
|
7463
|
+
const fullMessage = replaceMessagePlaceholder(localizationMsg, 'columnName', columnName);
|
|
7464
|
+
this.renderer.setAttribute(elem, 'aria-label', fullMessage);
|
|
7465
|
+
}
|
|
7422
7466
|
}
|
|
7423
|
-
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 });
|
|
7424
|
-
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: `
|
|
7467
|
+
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 });
|
|
7468
|
+
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: `
|
|
7425
7469
|
<ul class="k-radio-list k-reset">
|
|
7426
7470
|
<li *ngFor="let item of items">
|
|
7427
|
-
<input type="radio"
|
|
7471
|
+
<input #inputElem type="radio"
|
|
7428
7472
|
kendoRadioButton
|
|
7429
7473
|
[name]="idPrefix"
|
|
7430
7474
|
[checked]="isSelected(item.value)"
|
|
@@ -7434,7 +7478,7 @@ BooleanFilterMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
7434
7478
|
<label class="k-radio-label" [attr.for]="radioId(item.value)">{{item.text}}</label>
|
|
7435
7479
|
</li>
|
|
7436
7480
|
</ul>
|
|
7437
|
-
`, isInline: true, directives: [{ type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type:
|
|
7481
|
+
`, isInline: true, directives: [{ type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i3$2.RadioButtonDirective, selector: "input[kendoRadioButton]", inputs: ["size"] }] });
|
|
7438
7482
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BooleanFilterMenuComponent, decorators: [{
|
|
7439
7483
|
type: Component,
|
|
7440
7484
|
args: [{
|
|
@@ -7442,7 +7486,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
7442
7486
|
template: `
|
|
7443
7487
|
<ul class="k-radio-list k-reset">
|
|
7444
7488
|
<li *ngFor="let item of items">
|
|
7445
|
-
<input type="radio"
|
|
7489
|
+
<input #inputElem type="radio"
|
|
7446
7490
|
kendoRadioButton
|
|
7447
7491
|
[name]="idPrefix"
|
|
7448
7492
|
[checked]="isSelected(item.value)"
|
|
@@ -7454,9 +7498,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
7454
7498
|
</ul>
|
|
7455
7499
|
`
|
|
7456
7500
|
}]
|
|
7457
|
-
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; }, propDecorators: { hostClasses: [{
|
|
7501
|
+
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i1$1.LocalizationService }]; }, propDecorators: { hostClasses: [{
|
|
7458
7502
|
type: HostBinding,
|
|
7459
7503
|
args: ['class.k-filtercell']
|
|
7504
|
+
}], inputElem: [{
|
|
7505
|
+
type: ViewChild,
|
|
7506
|
+
args: ['inputElem']
|
|
7460
7507
|
}], filter: [{
|
|
7461
7508
|
type: Input
|
|
7462
7509
|
}], filterService: [{
|
|
@@ -7656,7 +7703,7 @@ FilterMenuContainerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12
|
|
|
7656
7703
|
</div>
|
|
7657
7704
|
</div>
|
|
7658
7705
|
</form>
|
|
7659
|
-
`, isInline: true, directives: [{ type:
|
|
7706
|
+
`, 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"] }] });
|
|
7660
7707
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: FilterMenuContainerComponent, decorators: [{
|
|
7661
7708
|
type: Component,
|
|
7662
7709
|
args: [{
|
|
@@ -8899,9 +8946,23 @@ class FilterCellOperatorsComponent {
|
|
|
8899
8946
|
this.subscription.unsubscribe();
|
|
8900
8947
|
}
|
|
8901
8948
|
}
|
|
8949
|
+
/**
|
|
8950
|
+
* @hidden
|
|
8951
|
+
*/
|
|
8952
|
+
get columnLabel() {
|
|
8953
|
+
const localizationMsg = this.localization.get('filterCellOperatorLabel') || '';
|
|
8954
|
+
const columnName = this.column.title || this.column.field;
|
|
8955
|
+
return replaceMessagePlaceholder(localizationMsg, 'columnName', columnName);
|
|
8956
|
+
}
|
|
8957
|
+
/**
|
|
8958
|
+
* @hidden
|
|
8959
|
+
*/
|
|
8960
|
+
messageFor(token) {
|
|
8961
|
+
return this.localization.get(token);
|
|
8962
|
+
}
|
|
8902
8963
|
}
|
|
8903
8964
|
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 });
|
|
8904
|
-
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: `
|
|
8965
|
+
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: `
|
|
8905
8966
|
<kendo-dropdownlist
|
|
8906
8967
|
#dropdown
|
|
8907
8968
|
*ngIf="showOperators"
|
|
@@ -8910,6 +8971,7 @@ FilterCellOperatorsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12
|
|
|
8910
8971
|
class="k-dropdown-operator"
|
|
8911
8972
|
(valueChange)="onChange($event)"
|
|
8912
8973
|
[value]="value"
|
|
8974
|
+
[attr.aria-label]="columnLabel"
|
|
8913
8975
|
iconClass="k-i-filter"
|
|
8914
8976
|
[valuePrimitive]="true"
|
|
8915
8977
|
textField="text"
|
|
@@ -8927,7 +8989,7 @@ FilterCellOperatorsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12
|
|
|
8927
8989
|
(click)="clearClick()"
|
|
8928
8990
|
(keydown)="clearKeydown($event)">
|
|
8929
8991
|
</button>
|
|
8930
|
-
`, 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$
|
|
8992
|
+
`, 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"] }] });
|
|
8931
8993
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: FilterCellOperatorsComponent, decorators: [{
|
|
8932
8994
|
type: Component,
|
|
8933
8995
|
args: [{
|
|
@@ -8941,6 +9003,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
8941
9003
|
class="k-dropdown-operator"
|
|
8942
9004
|
(valueChange)="onChange($event)"
|
|
8943
9005
|
[value]="value"
|
|
9006
|
+
[attr.aria-label]="columnLabel"
|
|
8944
9007
|
iconClass="k-i-filter"
|
|
8945
9008
|
[valuePrimitive]="true"
|
|
8946
9009
|
textField="text"
|
|
@@ -8974,6 +9037,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
8974
9037
|
type: Input
|
|
8975
9038
|
}], value: [{
|
|
8976
9039
|
type: Input
|
|
9040
|
+
}], column: [{
|
|
9041
|
+
type: Input
|
|
8977
9042
|
}], valueChange: [{
|
|
8978
9043
|
type: Output
|
|
8979
9044
|
}], clear: [{
|
|
@@ -9010,11 +9075,12 @@ FilterCellWrapperComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
9010
9075
|
<kendo-treelist-filter-cell-operators
|
|
9011
9076
|
[showOperators]="showOperators"
|
|
9012
9077
|
[operators]="operators"
|
|
9078
|
+
[column]="column"
|
|
9013
9079
|
(clear)="onClear()"
|
|
9014
9080
|
[showButton]="showButton"
|
|
9015
9081
|
[(value)]="currentOperator">
|
|
9016
9082
|
</kendo-treelist-filter-cell-operators>
|
|
9017
|
-
`, isInline: true, components: [{ type: FilterCellOperatorsComponent, selector: "kendo-treelist-filter-cell-operators", inputs: ["operators", "showButton", "showOperators", "value"], outputs: ["valueChange", "clear"] }] });
|
|
9083
|
+
`, isInline: true, components: [{ type: FilterCellOperatorsComponent, selector: "kendo-treelist-filter-cell-operators", inputs: ["operators", "showButton", "showOperators", "value", "column"], outputs: ["valueChange", "clear"] }] });
|
|
9018
9084
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: FilterCellWrapperComponent, decorators: [{
|
|
9019
9085
|
type: Component,
|
|
9020
9086
|
args: [{
|
|
@@ -9024,6 +9090,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
9024
9090
|
<kendo-treelist-filter-cell-operators
|
|
9025
9091
|
[showOperators]="showOperators"
|
|
9026
9092
|
[operators]="operators"
|
|
9093
|
+
[column]="column"
|
|
9027
9094
|
(clear)="onClear()"
|
|
9028
9095
|
[showButton]="showButton"
|
|
9029
9096
|
[(value)]="currentOperator">
|
|
@@ -9075,6 +9142,14 @@ class StringFilterCellComponent extends StringFilterComponent {
|
|
|
9075
9142
|
*/
|
|
9076
9143
|
this.showOperators = true;
|
|
9077
9144
|
}
|
|
9145
|
+
/**
|
|
9146
|
+
* @hidden
|
|
9147
|
+
*/
|
|
9148
|
+
get columnLabel() {
|
|
9149
|
+
const localizationMsg = this.localization.get('filterInputLabel') || '';
|
|
9150
|
+
const columnName = this.column.title || this.column.field;
|
|
9151
|
+
return replaceMessagePlaceholder(localizationMsg, 'columnName', columnName);
|
|
9152
|
+
}
|
|
9078
9153
|
}
|
|
9079
9154
|
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 });
|
|
9080
9155
|
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: `
|
|
@@ -9088,10 +9163,11 @@ StringFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
|
9088
9163
|
class="k-textbox k-input k-input-md k-rounded-md k-input-solid"
|
|
9089
9164
|
kendoTreeListFocusable
|
|
9090
9165
|
kendoFilterInput
|
|
9166
|
+
[columnLabel]="columnLabel"
|
|
9091
9167
|
[filterDelay]="filterDelay"
|
|
9092
9168
|
[ngModel]="currentFilter?.value" />
|
|
9093
9169
|
</kendo-treelist-filter-wrapper-cell>
|
|
9094
|
-
`, isInline: true, components: [{ type: FilterCellWrapperComponent, selector: "kendo-treelist-filter-wrapper-cell", inputs: ["showOperators"] }], directives: [{ type:
|
|
9170
|
+
`, 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"] }] });
|
|
9095
9171
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StringFilterCellComponent, decorators: [{
|
|
9096
9172
|
type: Component,
|
|
9097
9173
|
args: [{
|
|
@@ -9107,6 +9183,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
9107
9183
|
class="k-textbox k-input k-input-md k-rounded-md k-input-solid"
|
|
9108
9184
|
kendoTreeListFocusable
|
|
9109
9185
|
kendoFilterInput
|
|
9186
|
+
[columnLabel]="columnLabel"
|
|
9110
9187
|
[filterDelay]="filterDelay"
|
|
9111
9188
|
[ngModel]="currentFilter?.value" />
|
|
9112
9189
|
</kendo-treelist-filter-wrapper-cell>
|
|
@@ -9151,6 +9228,14 @@ class NumericFilterCellComponent extends NumericFilterComponent {
|
|
|
9151
9228
|
*/
|
|
9152
9229
|
this.showOperators = true;
|
|
9153
9230
|
}
|
|
9231
|
+
/**
|
|
9232
|
+
* @hidden
|
|
9233
|
+
*/
|
|
9234
|
+
get columnLabel() {
|
|
9235
|
+
const localizationMsg = this.localization.get('filterInputLabel') || '';
|
|
9236
|
+
const columnName = this.column.title || this.column.field;
|
|
9237
|
+
return replaceMessagePlaceholder(localizationMsg, 'columnName', columnName);
|
|
9238
|
+
}
|
|
9154
9239
|
}
|
|
9155
9240
|
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 });
|
|
9156
9241
|
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: `
|
|
@@ -9163,6 +9248,7 @@ NumericFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
9163
9248
|
<kendo-numerictextbox
|
|
9164
9249
|
kendoTreeListFocusable
|
|
9165
9250
|
kendoFilterInput
|
|
9251
|
+
[columnLabel]="columnLabel"
|
|
9166
9252
|
[filterDelay]="filterDelay"
|
|
9167
9253
|
[autoCorrect]="true"
|
|
9168
9254
|
[value]="currentFilter?.value"
|
|
@@ -9174,7 +9260,7 @@ NumericFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
9174
9260
|
[step]="step">
|
|
9175
9261
|
</kendo-numerictextbox>
|
|
9176
9262
|
</kendo-treelist-filter-wrapper-cell>
|
|
9177
|
-
`, isInline: true, components: [{ type: FilterCellWrapperComponent, selector: "kendo-treelist-filter-wrapper-cell", inputs: ["showOperators"] }, { type:
|
|
9263
|
+
`, 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"] }] });
|
|
9178
9264
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: NumericFilterCellComponent, decorators: [{
|
|
9179
9265
|
type: Component,
|
|
9180
9266
|
args: [{
|
|
@@ -9189,6 +9275,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
9189
9275
|
<kendo-numerictextbox
|
|
9190
9276
|
kendoTreeListFocusable
|
|
9191
9277
|
kendoFilterInput
|
|
9278
|
+
[columnLabel]="columnLabel"
|
|
9192
9279
|
[filterDelay]="filterDelay"
|
|
9193
9280
|
[autoCorrect]="true"
|
|
9194
9281
|
[value]="currentFilter?.value"
|
|
@@ -9233,6 +9320,20 @@ class BooleanFilterCellComponent extends BooleanFilterComponent {
|
|
|
9233
9320
|
super.localizationChange();
|
|
9234
9321
|
this.cd.markForCheck();
|
|
9235
9322
|
}
|
|
9323
|
+
/**
|
|
9324
|
+
* @hidden
|
|
9325
|
+
*/
|
|
9326
|
+
messageFor(token) {
|
|
9327
|
+
return this.localization.get(token);
|
|
9328
|
+
}
|
|
9329
|
+
/**
|
|
9330
|
+
* @hidden
|
|
9331
|
+
*/
|
|
9332
|
+
get columnLabel() {
|
|
9333
|
+
const localizationMsg = this.localization.get('booleanFilterCellLabel') || '';
|
|
9334
|
+
const columnName = this.column.title || this.column.field;
|
|
9335
|
+
return replaceMessagePlaceholder(localizationMsg, 'columnName', columnName);
|
|
9336
|
+
}
|
|
9236
9337
|
}
|
|
9237
9338
|
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 });
|
|
9238
9339
|
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: `
|
|
@@ -9244,6 +9345,7 @@ BooleanFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
9244
9345
|
<kendo-dropdownlist
|
|
9245
9346
|
kendoFilterInput
|
|
9246
9347
|
[defaultItem]="defaultItem"
|
|
9348
|
+
[columnLabel]="columnLabel"
|
|
9247
9349
|
[data]="items"
|
|
9248
9350
|
textField="text"
|
|
9249
9351
|
valueField="value"
|
|
@@ -9252,7 +9354,7 @@ BooleanFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
9252
9354
|
[value]="currentFilter?.value">
|
|
9253
9355
|
</kendo-dropdownlist>
|
|
9254
9356
|
</kendo-treelist-filter-wrapper-cell>
|
|
9255
|
-
`, 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"] }] });
|
|
9357
|
+
`, 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"] }] });
|
|
9256
9358
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BooleanFilterCellComponent, decorators: [{
|
|
9257
9359
|
type: Component,
|
|
9258
9360
|
args: [{
|
|
@@ -9266,6 +9368,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
9266
9368
|
<kendo-dropdownlist
|
|
9267
9369
|
kendoFilterInput
|
|
9268
9370
|
[defaultItem]="defaultItem"
|
|
9371
|
+
[columnLabel]="columnLabel"
|
|
9269
9372
|
[data]="items"
|
|
9270
9373
|
textField="text"
|
|
9271
9374
|
valueField="value"
|
|
@@ -9305,6 +9408,14 @@ class DateFilterCellComponent extends DateFilterComponent {
|
|
|
9305
9408
|
*/
|
|
9306
9409
|
this.showOperators = true;
|
|
9307
9410
|
}
|
|
9411
|
+
/**
|
|
9412
|
+
* @hidden
|
|
9413
|
+
*/
|
|
9414
|
+
get columnLabel() {
|
|
9415
|
+
const localizationMsg = this.localization.get('filterInputLabel') || '';
|
|
9416
|
+
const columnName = this.column.title || this.column.field;
|
|
9417
|
+
return replaceMessagePlaceholder(localizationMsg, 'columnName', columnName);
|
|
9418
|
+
}
|
|
9308
9419
|
}
|
|
9309
9420
|
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 });
|
|
9310
9421
|
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: `
|
|
@@ -9319,6 +9430,7 @@ DateFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
9319
9430
|
kendoFilterInput
|
|
9320
9431
|
[value]="currentFilter?.value"
|
|
9321
9432
|
[format]="format"
|
|
9433
|
+
[columnLabel]="columnLabel"
|
|
9322
9434
|
[formatPlaceholder]="formatPlaceholder"
|
|
9323
9435
|
[placeholder]="placeholder"
|
|
9324
9436
|
[activeView]="activeView"
|
|
@@ -9330,7 +9442,7 @@ DateFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
9330
9442
|
>
|
|
9331
9443
|
</kendo-datepicker>
|
|
9332
9444
|
</kendo-treelist-filter-wrapper-cell>
|
|
9333
|
-
`, 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"] }] });
|
|
9445
|
+
`, 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"] }] });
|
|
9334
9446
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DateFilterCellComponent, decorators: [{
|
|
9335
9447
|
type: Component,
|
|
9336
9448
|
args: [{
|
|
@@ -9347,6 +9459,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
9347
9459
|
kendoFilterInput
|
|
9348
9460
|
[value]="currentFilter?.value"
|
|
9349
9461
|
[format]="format"
|
|
9462
|
+
[columnLabel]="columnLabel"
|
|
9350
9463
|
[formatPlaceholder]="formatPlaceholder"
|
|
9351
9464
|
[placeholder]="placeholder"
|
|
9352
9465
|
[activeView]="activeView"
|
|
@@ -10366,6 +10479,9 @@ class HeaderComponent {
|
|
|
10366
10479
|
get leafColumns() {
|
|
10367
10480
|
return this._leafColumns;
|
|
10368
10481
|
}
|
|
10482
|
+
messageFor(token) {
|
|
10483
|
+
return this.localization.get(token);
|
|
10484
|
+
}
|
|
10369
10485
|
attachTargets() {
|
|
10370
10486
|
if (this.targetSubscription) {
|
|
10371
10487
|
this.targetSubscription.unsubscribe();
|
|
@@ -10556,6 +10672,7 @@ HeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versio
|
|
|
10556
10672
|
<input
|
|
10557
10673
|
type="checkbox"
|
|
10558
10674
|
class="k-checkbox k-checkbox-md k-rounded-md"
|
|
10675
|
+
[attr.aria-label]="messageFor('selectAllRowsCheckboxLabel')"
|
|
10559
10676
|
kendoTreeListFocusable
|
|
10560
10677
|
(click)="selectAllClick($event)" />
|
|
10561
10678
|
</ng-template>
|
|
@@ -10745,6 +10862,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
10745
10862
|
<input
|
|
10746
10863
|
type="checkbox"
|
|
10747
10864
|
class="k-checkbox k-checkbox-md k-rounded-md"
|
|
10865
|
+
[attr.aria-label]="messageFor('selectAllRowsCheckboxLabel')"
|
|
10748
10866
|
kendoTreeListFocusable
|
|
10749
10867
|
(click)="selectAllClick($event)" />
|
|
10750
10868
|
</ng-template>
|
|
@@ -11183,6 +11301,9 @@ class CellComponent {
|
|
|
11183
11301
|
this.caretAltDownIcon;
|
|
11184
11302
|
return icon;
|
|
11185
11303
|
}
|
|
11304
|
+
messageFor(token) {
|
|
11305
|
+
return this.localization.get(token);
|
|
11306
|
+
}
|
|
11186
11307
|
}
|
|
11187
11308
|
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 });
|
|
11188
11309
|
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: `
|
|
@@ -11211,6 +11332,7 @@ CellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
|
|
|
11211
11332
|
<input
|
|
11212
11333
|
type="checkbox"
|
|
11213
11334
|
kendoTreeListFocusable
|
|
11335
|
+
[attr.aria-label]="messageFor('selectRowCheckboxLabel')"
|
|
11214
11336
|
class="k-checkbox k-checkbox-md k-rounded-md"
|
|
11215
11337
|
[checked]="selected" />
|
|
11216
11338
|
</ng-template>
|
|
@@ -11260,7 +11382,7 @@ CellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
|
|
|
11260
11382
|
</ng-container>
|
|
11261
11383
|
</ng-container>
|
|
11262
11384
|
</ng-container>
|
|
11263
|
-
`, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { type:
|
|
11385
|
+
`, 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 } });
|
|
11264
11386
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: CellComponent, decorators: [{
|
|
11265
11387
|
type: Component,
|
|
11266
11388
|
args: [{
|
|
@@ -11291,6 +11413,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
11291
11413
|
<input
|
|
11292
11414
|
type="checkbox"
|
|
11293
11415
|
kendoTreeListFocusable
|
|
11416
|
+
[attr.aria-label]="messageFor('selectRowCheckboxLabel')"
|
|
11294
11417
|
class="k-checkbox k-checkbox-md k-rounded-md"
|
|
11295
11418
|
[checked]="selected" />
|
|
11296
11419
|
</ng-template>
|
|
@@ -12596,8 +12719,8 @@ ListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
|
|
|
12596
12719
|
class="k-table k-grid-table k-table-md"
|
|
12597
12720
|
role="presentation"
|
|
12598
12721
|
[style.width.px]="lockedWidth">
|
|
12599
|
-
<colgroup
|
|
12600
|
-
|
|
12722
|
+
<colgroup
|
|
12723
|
+
kendoTreeListColGroup
|
|
12601
12724
|
[columns]="$any(lockedLeafColumns)">
|
|
12602
12725
|
</colgroup>
|
|
12603
12726
|
<tbody kendoTreeListTableBody
|
|
@@ -12620,16 +12743,17 @@ ListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
|
|
|
12620
12743
|
<div [style.height.px]="totalHeight"></div>
|
|
12621
12744
|
</div>
|
|
12622
12745
|
</div>
|
|
12623
|
-
<div
|
|
12624
|
-
|
|
12625
|
-
|
|
12626
|
-
|
|
12627
|
-
|
|
12746
|
+
<div
|
|
12747
|
+
#container
|
|
12748
|
+
class="k-grid-content k-virtual-content"
|
|
12749
|
+
[kendoTreeListResizableContainer]="lockedLeafColumns.length > 0"
|
|
12750
|
+
[lockedWidth]="lockedWidth + 1"
|
|
12751
|
+
>
|
|
12628
12752
|
<div role="presentation" class="k-grid-table-wrap">
|
|
12629
12753
|
<table [style.width.px]="nonLockedWidth" #table [virtualColumns]="virtualColumns"
|
|
12630
12754
|
class="k-table k-grid-table k-table-md" role="presentation">
|
|
12631
|
-
<colgroup
|
|
12632
|
-
|
|
12755
|
+
<colgroup
|
|
12756
|
+
kendoTreeListColGroup
|
|
12633
12757
|
[columns]="$any(nonLockedColumnsToRender)">
|
|
12634
12758
|
</colgroup>
|
|
12635
12759
|
<tbody kendoTreeListTableBody
|
|
@@ -12681,8 +12805,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
12681
12805
|
class="k-table k-grid-table k-table-md"
|
|
12682
12806
|
role="presentation"
|
|
12683
12807
|
[style.width.px]="lockedWidth">
|
|
12684
|
-
<colgroup
|
|
12685
|
-
|
|
12808
|
+
<colgroup
|
|
12809
|
+
kendoTreeListColGroup
|
|
12686
12810
|
[columns]="$any(lockedLeafColumns)">
|
|
12687
12811
|
</colgroup>
|
|
12688
12812
|
<tbody kendoTreeListTableBody
|
|
@@ -12705,16 +12829,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
12705
12829
|
<div [style.height.px]="totalHeight"></div>
|
|
12706
12830
|
</div>
|
|
12707
12831
|
</div>
|
|
12708
|
-
<div
|
|
12709
|
-
|
|
12710
|
-
|
|
12711
|
-
|
|
12712
|
-
|
|
12832
|
+
<div
|
|
12833
|
+
#container
|
|
12834
|
+
class="k-grid-content k-virtual-content"
|
|
12835
|
+
[kendoTreeListResizableContainer]="lockedLeafColumns.length > 0"
|
|
12836
|
+
[lockedWidth]="lockedWidth + 1"
|
|
12837
|
+
>
|
|
12713
12838
|
<div role="presentation" class="k-grid-table-wrap">
|
|
12714
12839
|
<table [style.width.px]="nonLockedWidth" #table [virtualColumns]="virtualColumns"
|
|
12715
12840
|
class="k-table k-grid-table k-table-md" role="presentation">
|
|
12716
|
-
<colgroup
|
|
12717
|
-
|
|
12841
|
+
<colgroup
|
|
12842
|
+
kendoTreeListColGroup
|
|
12718
12843
|
[columns]="$any(nonLockedColumnsToRender)">
|
|
12719
12844
|
</colgroup>
|
|
12720
12845
|
<tbody kendoTreeListTableBody
|
|
@@ -12995,7 +13120,7 @@ PagerPrevButtonsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
|
12995
13120
|
[attr.aria-label]="textFor('pagerPreviousPage')"
|
|
12996
13121
|
(click)="onButtonClick('prevPage')">
|
|
12997
13122
|
</button>
|
|
12998
|
-
`, isInline: true, components: [{ type: i4$
|
|
13123
|
+
`, 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 });
|
|
12999
13124
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PagerPrevButtonsComponent, decorators: [{
|
|
13000
13125
|
type: Component,
|
|
13001
13126
|
args: [{
|
|
@@ -13180,7 +13305,7 @@ PagerNumericButtonsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12
|
|
|
13180
13305
|
[attr.title]="pageLabel(end + 1)"
|
|
13181
13306
|
(click)="changePage(end)">...</button>
|
|
13182
13307
|
</div>
|
|
13183
|
-
`, isInline: true, components: [{ type: i4$
|
|
13308
|
+
`, 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 });
|
|
13184
13309
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PagerNumericButtonsComponent, decorators: [{
|
|
13185
13310
|
type: Component,
|
|
13186
13311
|
args: [{
|
|
@@ -13349,7 +13474,7 @@ PagerInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
13349
13474
|
</kendo-numerictextbox>
|
|
13350
13475
|
{{textFor('pagerOf')}} {{totalPages}}
|
|
13351
13476
|
</span>
|
|
13352
|
-
`, isInline: true, components: [{ type:
|
|
13477
|
+
`, 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"] }] });
|
|
13353
13478
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PagerInputComponent, decorators: [{
|
|
13354
13479
|
type: Component,
|
|
13355
13480
|
args: [{
|
|
@@ -13453,7 +13578,7 @@ PagerNextButtonsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
|
13453
13578
|
[attr.aria-label]="textFor('pagerLastPage')"
|
|
13454
13579
|
(click)="onButtonClick('lastPage')">
|
|
13455
13580
|
</button>
|
|
13456
|
-
`, isInline: true, components: [{ type: i4$
|
|
13581
|
+
`, 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 });
|
|
13457
13582
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PagerNextButtonsComponent, decorators: [{
|
|
13458
13583
|
type: Component,
|
|
13459
13584
|
args: [{
|
|
@@ -13653,7 +13778,7 @@ PagerPageSizesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
13653
13778
|
[attr.aria-label]="textFor('pagerItemsPerPage')"
|
|
13654
13779
|
(valueChange)="pageSizeChange($event)"></kendo-dropdownlist>
|
|
13655
13780
|
<kendo-label [for]="dropdownlist" [text]="textFor('pagerItemsPerPage')"></kendo-label>
|
|
13656
|
-
`, 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$
|
|
13781
|
+
`, 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 });
|
|
13657
13782
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PagerPageSizesComponent, decorators: [{
|
|
13658
13783
|
type: Component,
|
|
13659
13784
|
args: [{
|
|
@@ -14055,7 +14180,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
14055
14180
|
class Messages extends ComponentMessages {
|
|
14056
14181
|
}
|
|
14057
14182
|
Messages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
14058
|
-
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 });
|
|
14183
|
+
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 });
|
|
14059
14184
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, decorators: [{
|
|
14060
14185
|
type: Directive,
|
|
14061
14186
|
args: [{}]
|
|
@@ -14087,6 +14212,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
14087
14212
|
type: Input
|
|
14088
14213
|
}], filter: [{
|
|
14089
14214
|
type: Input
|
|
14215
|
+
}], filterInputLabel: [{
|
|
14216
|
+
type: Input
|
|
14217
|
+
}], filterCellOperatorLabel: [{
|
|
14218
|
+
type: Input
|
|
14219
|
+
}], booleanFilterCellLabel: [{
|
|
14220
|
+
type: Input
|
|
14090
14221
|
}], filterEqOperator: [{
|
|
14091
14222
|
type: Input
|
|
14092
14223
|
}], filterNotEqOperator: [{
|
|
@@ -14169,6 +14300,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
14169
14300
|
type: Input
|
|
14170
14301
|
}], dragRowHandleLabel: [{
|
|
14171
14302
|
type: Input
|
|
14303
|
+
}], selectRowCheckboxLabel: [{
|
|
14304
|
+
type: Input
|
|
14305
|
+
}], selectAllRowsCheckboxLabel: [{
|
|
14306
|
+
type: Input
|
|
14172
14307
|
}] } });
|
|
14173
14308
|
|
|
14174
14309
|
/**
|
|
@@ -16140,6 +16275,12 @@ TreeListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
16140
16275
|
i18n-pagerItemsTotal="kendo.treelist.pagerItemsTotal|The label after the total items count in the TreeList pager"
|
|
16141
16276
|
pagerItemsTotal="items total"
|
|
16142
16277
|
|
|
16278
|
+
i18n-filterCellOperatorLabel="kendo.treelist.filterCellOperatorLabel|The label of the filter cell operators dropdown"
|
|
16279
|
+
filterCellOperatorLabel="{{ 'Filter cell operators for {columnName}' }}"
|
|
16280
|
+
|
|
16281
|
+
i18n-booleanFilterCellLabel="kendo.treelist.booleanFilterCellLabel|The label of the boolean filter cell dropdown"
|
|
16282
|
+
booleanFilterCellLabel="{{ 'Boolean filter cell for {columnName}' }}"
|
|
16283
|
+
|
|
16143
16284
|
i18n-filter="kendo.treelist.filter|The label of the filter cell or icon"
|
|
16144
16285
|
filter="Filter"
|
|
16145
16286
|
|
|
@@ -16221,6 +16362,9 @@ TreeListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
16221
16362
|
i18n-loading="kendo.treelist.loading|The loading text"
|
|
16222
16363
|
loading="Loading"
|
|
16223
16364
|
|
|
16365
|
+
i18n-filterInputLabel="kendo.treelist.filterInputLabel|The label of the filter row and menu inputs"
|
|
16366
|
+
filterInputLabel="{{ '{columnName} Filter' }}"
|
|
16367
|
+
|
|
16224
16368
|
i18n-columnMenu="kendo.treelist.columnMenu|The title of the column menu icon"
|
|
16225
16369
|
columnMenu="Column Menu"
|
|
16226
16370
|
|
|
@@ -16265,8 +16409,15 @@ TreeListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
16265
16409
|
|
|
16266
16410
|
i18n-bottomToolbarLabel="kendo.treelist.bottomToolbarLabel|The label of the TreeList bottom toolbar"
|
|
16267
16411
|
bottomToolbarLabel="Bottom toolbar"
|
|
16412
|
+
|
|
16268
16413
|
i18n-dragRowHandleLabel="kendo.treelist.dragRowHandleLabel|The label for the TreeList drag row handle"
|
|
16269
16414
|
dragRowHandleLabel="Drag row"
|
|
16415
|
+
|
|
16416
|
+
i18n-selectRowCheckboxLabel="kendo.treelist.selectRowCheckboxLabel|The label for the select row checkbox"
|
|
16417
|
+
selectRowCheckboxLabel="Select row"
|
|
16418
|
+
|
|
16419
|
+
i18n-selectAllRowsCheckboxLabel="kendo.treelist.selectAllRowsCheckboxLabel|The label for the select all rows checkbox"
|
|
16420
|
+
selectAllRowsCheckboxLabel="Select all rows"
|
|
16270
16421
|
>
|
|
16271
16422
|
</ng-container>
|
|
16272
16423
|
<kendo-treelist-toolbar
|
|
@@ -16317,8 +16468,8 @@ TreeListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
16317
16468
|
role="presentation"
|
|
16318
16469
|
[style.width.px]="lockedWidth"
|
|
16319
16470
|
class="k-grid-header-table k-table k-table-md">
|
|
16320
|
-
<colgroup
|
|
16321
|
-
|
|
16471
|
+
<colgroup
|
|
16472
|
+
kendoTreeListColGroup
|
|
16322
16473
|
[columns]="$any(lockedLeafColumns)">
|
|
16323
16474
|
</colgroup>
|
|
16324
16475
|
<thead kendoTreeListHeader
|
|
@@ -16345,8 +16496,8 @@ TreeListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
16345
16496
|
[style.width.px]="nonLockedWidth"
|
|
16346
16497
|
[virtualColumns]="virtualColumns"
|
|
16347
16498
|
class="k-grid-header-table k-table k-table-md">
|
|
16348
|
-
<colgroup
|
|
16349
|
-
|
|
16499
|
+
<colgroup
|
|
16500
|
+
kendoTreeListColGroup
|
|
16350
16501
|
[columns]="headerLeafColumns">
|
|
16351
16502
|
</colgroup>
|
|
16352
16503
|
<thead kendoTreeListHeader
|
|
@@ -16398,7 +16549,8 @@ TreeListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
16398
16549
|
<table
|
|
16399
16550
|
class="k-table k-table-md k-grid-header-table"
|
|
16400
16551
|
[style.table-layout]="resizable ? 'fixed' : null">
|
|
16401
|
-
<colgroup
|
|
16552
|
+
<colgroup
|
|
16553
|
+
kendoTreeListColGroup
|
|
16402
16554
|
[columns]="$any(leafColumns)">
|
|
16403
16555
|
</colgroup>
|
|
16404
16556
|
<thead kendoTreeListHeader
|
|
@@ -16550,6 +16702,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
16550
16702
|
i18n-pagerItemsTotal="kendo.treelist.pagerItemsTotal|The label after the total items count in the TreeList pager"
|
|
16551
16703
|
pagerItemsTotal="items total"
|
|
16552
16704
|
|
|
16705
|
+
i18n-filterCellOperatorLabel="kendo.treelist.filterCellOperatorLabel|The label of the filter cell operators dropdown"
|
|
16706
|
+
filterCellOperatorLabel="{{ 'Filter cell operators for {columnName}' }}"
|
|
16707
|
+
|
|
16708
|
+
i18n-booleanFilterCellLabel="kendo.treelist.booleanFilterCellLabel|The label of the boolean filter cell dropdown"
|
|
16709
|
+
booleanFilterCellLabel="{{ 'Boolean filter cell for {columnName}' }}"
|
|
16710
|
+
|
|
16553
16711
|
i18n-filter="kendo.treelist.filter|The label of the filter cell or icon"
|
|
16554
16712
|
filter="Filter"
|
|
16555
16713
|
|
|
@@ -16631,6 +16789,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
16631
16789
|
i18n-loading="kendo.treelist.loading|The loading text"
|
|
16632
16790
|
loading="Loading"
|
|
16633
16791
|
|
|
16792
|
+
i18n-filterInputLabel="kendo.treelist.filterInputLabel|The label of the filter row and menu inputs"
|
|
16793
|
+
filterInputLabel="{{ '{columnName} Filter' }}"
|
|
16794
|
+
|
|
16634
16795
|
i18n-columnMenu="kendo.treelist.columnMenu|The title of the column menu icon"
|
|
16635
16796
|
columnMenu="Column Menu"
|
|
16636
16797
|
|
|
@@ -16675,8 +16836,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
16675
16836
|
|
|
16676
16837
|
i18n-bottomToolbarLabel="kendo.treelist.bottomToolbarLabel|The label of the TreeList bottom toolbar"
|
|
16677
16838
|
bottomToolbarLabel="Bottom toolbar"
|
|
16839
|
+
|
|
16678
16840
|
i18n-dragRowHandleLabel="kendo.treelist.dragRowHandleLabel|The label for the TreeList drag row handle"
|
|
16679
16841
|
dragRowHandleLabel="Drag row"
|
|
16842
|
+
|
|
16843
|
+
i18n-selectRowCheckboxLabel="kendo.treelist.selectRowCheckboxLabel|The label for the select row checkbox"
|
|
16844
|
+
selectRowCheckboxLabel="Select row"
|
|
16845
|
+
|
|
16846
|
+
i18n-selectAllRowsCheckboxLabel="kendo.treelist.selectAllRowsCheckboxLabel|The label for the select all rows checkbox"
|
|
16847
|
+
selectAllRowsCheckboxLabel="Select all rows"
|
|
16680
16848
|
>
|
|
16681
16849
|
</ng-container>
|
|
16682
16850
|
<kendo-treelist-toolbar
|
|
@@ -16727,8 +16895,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
16727
16895
|
role="presentation"
|
|
16728
16896
|
[style.width.px]="lockedWidth"
|
|
16729
16897
|
class="k-grid-header-table k-table k-table-md">
|
|
16730
|
-
<colgroup
|
|
16731
|
-
|
|
16898
|
+
<colgroup
|
|
16899
|
+
kendoTreeListColGroup
|
|
16732
16900
|
[columns]="$any(lockedLeafColumns)">
|
|
16733
16901
|
</colgroup>
|
|
16734
16902
|
<thead kendoTreeListHeader
|
|
@@ -16755,8 +16923,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
16755
16923
|
[style.width.px]="nonLockedWidth"
|
|
16756
16924
|
[virtualColumns]="virtualColumns"
|
|
16757
16925
|
class="k-grid-header-table k-table k-table-md">
|
|
16758
|
-
<colgroup
|
|
16759
|
-
|
|
16926
|
+
<colgroup
|
|
16927
|
+
kendoTreeListColGroup
|
|
16760
16928
|
[columns]="headerLeafColumns">
|
|
16761
16929
|
</colgroup>
|
|
16762
16930
|
<thead kendoTreeListHeader
|
|
@@ -16808,7 +16976,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
16808
16976
|
<table
|
|
16809
16977
|
class="k-table k-table-md k-grid-header-table"
|
|
16810
16978
|
[style.table-layout]="resizable ? 'fixed' : null">
|
|
16811
|
-
<colgroup
|
|
16979
|
+
<colgroup
|
|
16980
|
+
kendoTreeListColGroup
|
|
16812
16981
|
[columns]="$any(leafColumns)">
|
|
16813
16982
|
</colgroup>
|
|
16814
16983
|
<thead kendoTreeListHeader
|
|
@@ -17114,6 +17283,14 @@ class AutoCompleteFilterCellComponent extends BaseFilterCellComponent {
|
|
|
17114
17283
|
get currentOperator() {
|
|
17115
17284
|
return this.currentFilter ? this.currentFilter.operator : "contains";
|
|
17116
17285
|
}
|
|
17286
|
+
/**
|
|
17287
|
+
* @hidden
|
|
17288
|
+
*/
|
|
17289
|
+
get columnLabel() {
|
|
17290
|
+
const localizationMsg = this.localization.get('filterInputLabel') || '';
|
|
17291
|
+
const columnName = this.column.title || this.column.field;
|
|
17292
|
+
return replaceMessagePlaceholder(localizationMsg, 'columnName', columnName);
|
|
17293
|
+
}
|
|
17117
17294
|
}
|
|
17118
17295
|
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 });
|
|
17119
17296
|
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: `
|
|
@@ -17125,11 +17302,12 @@ AutoCompleteFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion:
|
|
|
17125
17302
|
<kendo-autocomplete
|
|
17126
17303
|
kendoFilterInput
|
|
17127
17304
|
[data]="data"
|
|
17305
|
+
[columnLabel]="columnLabel"
|
|
17128
17306
|
[valueField]="valueField"
|
|
17129
17307
|
[value]="currentFilter?.value">
|
|
17130
17308
|
</kendo-autocomplete>
|
|
17131
17309
|
</kendo-treelist-filter-wrapper-cell>
|
|
17132
|
-
`, 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"] }] });
|
|
17310
|
+
`, 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"] }] });
|
|
17133
17311
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AutoCompleteFilterCellComponent, decorators: [{
|
|
17134
17312
|
type: Component,
|
|
17135
17313
|
args: [{
|
|
@@ -17143,6 +17321,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
17143
17321
|
<kendo-autocomplete
|
|
17144
17322
|
kendoFilterInput
|
|
17145
17323
|
[data]="data"
|
|
17324
|
+
[columnLabel]="columnLabel"
|
|
17146
17325
|
[valueField]="valueField"
|
|
17147
17326
|
[value]="currentFilter?.value">
|
|
17148
17327
|
</kendo-autocomplete>
|
|
@@ -18336,7 +18515,7 @@ ColumnChooserComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
|
18336
18515
|
(columnChange)="onChange($event)">
|
|
18337
18516
|
</kendo-treelist-columnlist>
|
|
18338
18517
|
</ng-template>
|
|
18339
|
-
`, isInline: true, components: [{ type: i4$
|
|
18518
|
+
`, 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"] }] });
|
|
18340
18519
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ColumnChooserComponent, decorators: [{
|
|
18341
18520
|
type: Component,
|
|
18342
18521
|
args: [{
|