@progress/kendo-angular-treelist 17.0.0-develop.37 → 17.0.0-develop.38
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/column-menu/column-list.component.d.ts +1 -1
- package/esm2022/column-menu/column-list.component.mjs +44 -44
- package/esm2022/filtering/boolean-filter.component.mjs +3 -6
- package/esm2022/filtering/cell/string-filter-cell.component.mjs +11 -10
- package/esm2022/filtering/menu/boolean-filter-menu.component.mjs +11 -11
- package/esm2022/filtering/menu/filter-menu.module.mjs +1 -1
- package/esm2022/filtering/menu/string-filter-menu-input.component.mjs +11 -11
- package/esm2022/navigation/default-focusable-element.mjs +2 -1
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/rendering/cell.component.mjs +19 -29
- package/esm2022/rendering/header/header.component.mjs +15 -16
- package/esm2022/rendering/header/header.module.mjs +1 -1
- package/esm2022/rendering/list.component.mjs +4 -4
- package/esm2022/rendering/table-body.component.mjs +3 -2
- package/esm2022/selection/selection.service.mjs +1 -0
- package/esm2022/treelist.module.mjs +1 -1
- package/fesm2022/progress-kendo-angular-treelist.mjs +121 -134
- package/package.json +16 -16
- package/rendering/header/header.component.d.ts +1 -1
- package/schematics/ngAdd/index.js +3 -3
@@ -29,7 +29,7 @@ import * as i47 from '@progress/kendo-angular-pager';
|
|
29
29
|
import { PagerContextService, PagerNavigationService, PagerTemplateDirective, KENDO_PAGER } from '@progress/kendo-angular-pager';
|
30
30
|
import { getter, setter } from '@progress/kendo-common';
|
31
31
|
import * as i13 from '@progress/kendo-angular-inputs';
|
32
|
-
import { NumericTextBoxComponent,
|
32
|
+
import { NumericTextBoxComponent, CheckBoxComponent, TextBoxComponent, RadioButtonComponent, KENDO_NUMERICTEXTBOX, InputsModule } from '@progress/kendo-angular-inputs';
|
33
33
|
import * as i1$3 from '@progress/kendo-angular-intl';
|
34
34
|
import { DropDownListComponent, AutoCompleteComponent, DropDownListModule, AutoCompleteModule } from '@progress/kendo-angular-dropdowns';
|
35
35
|
import { ButtonComponent, Button, ButtonModule } from '@progress/kendo-angular-buttons';
|
@@ -47,8 +47,8 @@ const packageMetadata = {
|
|
47
47
|
name: '@progress/kendo-angular-treelist',
|
48
48
|
productName: 'Kendo UI for Angular',
|
49
49
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
50
|
-
publishDate:
|
51
|
-
version: '17.0.0-develop.
|
50
|
+
publishDate: 1730732293,
|
51
|
+
version: '17.0.0-develop.38',
|
52
52
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
53
53
|
};
|
54
54
|
|
@@ -3395,9 +3395,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
3395
3395
|
|
3396
3396
|
const isButton = matchesNodeName('button');
|
3397
3397
|
const isInputTag = matchesNodeName('input');
|
3398
|
+
const isKendoInputTag = matchesNodeName('kendo-checkbox') || matchesNodeName('kendo-textbox');
|
3398
3399
|
const navigableRegex = /(button|checkbox|color|file|radio|reset|submit)/i;
|
3399
3400
|
const isNavigableInput = element => isInputTag(element) && navigableRegex.test(element.type);
|
3400
|
-
const isNavigable = element => !element.disabled && (isButton(element) || isNavigableInput(element));
|
3401
|
+
const isNavigable = element => !element.disabled && (isButton(element) || isNavigableInput(element) || isKendoInputTag(element));
|
3401
3402
|
/**
|
3402
3403
|
* @hidden
|
3403
3404
|
*/
|
@@ -4298,6 +4299,7 @@ class SelectionService {
|
|
4298
4299
|
this.dragging = false;
|
4299
4300
|
return;
|
4300
4301
|
}
|
4302
|
+
//
|
4301
4303
|
const isCheckbox = args.originalEvent.target ? hasClasses$1(args.originalEvent.target, 'k-checkbox') : true;
|
4302
4304
|
if (this.rowSelection && this.settings.checkboxOnly && !isCheckbox) {
|
4303
4305
|
return;
|
@@ -6131,12 +6133,11 @@ class CellComponent {
|
|
6131
6133
|
</ng-container>
|
6132
6134
|
<ng-container *ngIf="isBoundColumn">{{ dataItem | valueOf: column.field: column.format}}</ng-container>
|
6133
6135
|
<ng-template [ngIf]="column.isCheckboxColumn && !isNew">
|
6134
|
-
<
|
6135
|
-
type="checkbox"
|
6136
|
+
<kendo-checkbox
|
6136
6137
|
kendoTreeListFocusable
|
6137
|
-
[
|
6138
|
-
|
6139
|
-
|
6138
|
+
[inputAttributes]="{'aria-label': messageFor('selectRowCheckboxLabel')}"
|
6139
|
+
[checkedState]="selected"
|
6140
|
+
></kendo-checkbox>
|
6140
6141
|
</ng-template>
|
6141
6142
|
<ng-container *ngIf="column.isRowReorderColumn && !isNew">
|
6142
6143
|
<kendo-icon-wrapper
|
@@ -6166,25 +6167,21 @@ class CellComponent {
|
|
6166
6167
|
kendoTreeListFocusable
|
6167
6168
|
></kendo-datepicker>
|
6168
6169
|
|
6169
|
-
<
|
6170
|
+
<kendo-checkbox
|
6170
6171
|
*ngSwitchCase="'boolean'"
|
6171
|
-
type="checkbox"
|
6172
|
-
class="k-checkbox k-checkbox-md k-rounded-md"
|
6173
6172
|
[formControl]="$any(formGroup.get(column.field))"
|
6174
6173
|
kendoTreeListFocusable
|
6175
|
-
|
6174
|
+
></kendo-checkbox>
|
6176
6175
|
|
6177
|
-
<
|
6176
|
+
<kendo-textbox
|
6178
6177
|
*ngSwitchDefault
|
6179
|
-
type="text"
|
6180
|
-
class="k-textbox k-input k-input-md k-input-solid k-rounded-md"
|
6181
6178
|
[formControl]="$any(formGroup.get(column.field))"
|
6182
6179
|
kendoTreeListFocusable
|
6183
|
-
|
6180
|
+
></kendo-textbox>
|
6184
6181
|
</ng-container>
|
6185
6182
|
</ng-container>
|
6186
6183
|
</ng-container>
|
6187
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: FocusableDirective, selector: "[kendoTreeListFocusable],\n [kendoTreeListAddCommand],\n [kendoTreeListEditCommand],\n [kendoTreeListRemoveCommand],\n [kendoTreeListSaveCommand],\n [kendoTreeListCancelCommand]\n ", inputs: ["kendoTreeListFocusable", "enabled", "kendoTreeListAddCommand", "kendoTreeListEditCommand", "kendoTreeListRemoveCommand", "kendoTreeListSaveCommand", "kendoTreeListCancelCommand"] }, { kind: "component", type: 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", "inputAttributes"], outputs: ["valueChange", "focus", "blur", "inputFocus", "inputBlur"], exportAs: ["kendoNumericTextBox"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.
|
6184
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: FocusableDirective, selector: "[kendoTreeListFocusable],\n [kendoTreeListAddCommand],\n [kendoTreeListEditCommand],\n [kendoTreeListRemoveCommand],\n [kendoTreeListSaveCommand],\n [kendoTreeListCancelCommand]\n ", inputs: ["kendoTreeListFocusable", "enabled", "kendoTreeListAddCommand", "kendoTreeListEditCommand", "kendoTreeListRemoveCommand", "kendoTreeListSaveCommand", "kendoTreeListCancelCommand"] }, { kind: "component", type: 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", "inputAttributes"], outputs: ["valueChange", "focus", "blur", "inputFocus", "inputBlur"], exportAs: ["kendoNumericTextBox"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "clearButton", "inputAttributes", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "footer", "navigationItemTemplate", "weekDaysFormat", "showOtherMonthDays", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "enableMouseWheel", "allowCaretMode", "autoFill", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "title", "subtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close", "escape"], exportAs: ["kendo-datepicker"] }, { kind: "directive", type: NgSwitchDefault, selector: "[ngSwitchDefault]" }, { kind: "pipe", type: FieldAccessorPipe, name: "valueOf" }, { kind: "pipe", type: LevelItemsPipe, name: "levelItems" }, { kind: "component", type: CheckBoxComponent, selector: "kendo-checkbox", inputs: ["checkedState", "rounded"], outputs: ["checkedStateChange"], exportAs: ["kendoCheckBox"] }, { kind: "component", type: TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength", "inputAttributes"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }] });
|
6188
6185
|
}
|
6189
6186
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CellComponent, decorators: [{
|
6190
6187
|
type: Component,
|
@@ -6213,12 +6210,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
6213
6210
|
</ng-container>
|
6214
6211
|
<ng-container *ngIf="isBoundColumn">{{ dataItem | valueOf: column.field: column.format}}</ng-container>
|
6215
6212
|
<ng-template [ngIf]="column.isCheckboxColumn && !isNew">
|
6216
|
-
<
|
6217
|
-
type="checkbox"
|
6213
|
+
<kendo-checkbox
|
6218
6214
|
kendoTreeListFocusable
|
6219
|
-
[
|
6220
|
-
|
6221
|
-
|
6215
|
+
[inputAttributes]="{'aria-label': messageFor('selectRowCheckboxLabel')}"
|
6216
|
+
[checkedState]="selected"
|
6217
|
+
></kendo-checkbox>
|
6222
6218
|
</ng-template>
|
6223
6219
|
<ng-container *ngIf="column.isRowReorderColumn && !isNew">
|
6224
6220
|
<kendo-icon-wrapper
|
@@ -6248,27 +6244,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
6248
6244
|
kendoTreeListFocusable
|
6249
6245
|
></kendo-datepicker>
|
6250
6246
|
|
6251
|
-
<
|
6247
|
+
<kendo-checkbox
|
6252
6248
|
*ngSwitchCase="'boolean'"
|
6253
|
-
type="checkbox"
|
6254
|
-
class="k-checkbox k-checkbox-md k-rounded-md"
|
6255
6249
|
[formControl]="$any(formGroup.get(column.field))"
|
6256
6250
|
kendoTreeListFocusable
|
6257
|
-
|
6251
|
+
></kendo-checkbox>
|
6258
6252
|
|
6259
|
-
<
|
6253
|
+
<kendo-textbox
|
6260
6254
|
*ngSwitchDefault
|
6261
|
-
type="text"
|
6262
|
-
class="k-textbox k-input k-input-md k-input-solid k-rounded-md"
|
6263
6255
|
[formControl]="$any(formGroup.get(column.field))"
|
6264
6256
|
kendoTreeListFocusable
|
6265
|
-
|
6257
|
+
></kendo-textbox>
|
6266
6258
|
</ng-container>
|
6267
6259
|
</ng-container>
|
6268
6260
|
</ng-container>
|
6269
6261
|
`,
|
6270
6262
|
standalone: true,
|
6271
|
-
imports: [NgSwitch, NgSwitchCase, NgIf, NgFor, IconWrapperComponent, NgTemplateOutlet, FocusableDirective, NumericTextBoxComponent, ReactiveFormsModule, DatePickerComponent, NgSwitchDefault, FieldAccessorPipe, LevelItemsPipe]
|
6263
|
+
imports: [NgSwitch, NgSwitchCase, NgIf, NgFor, IconWrapperComponent, NgTemplateOutlet, FocusableDirective, NumericTextBoxComponent, ReactiveFormsModule, DatePickerComponent, NgSwitchDefault, FieldAccessorPipe, LevelItemsPipe, CheckBoxComponent, TextBoxComponent]
|
6272
6264
|
}]
|
6273
6265
|
}], ctorParameters: function () { return [{ type: EditService }, { type: i1$1.LocalizationService }, { type: FocusGroup }]; }, propDecorators: { commandCellClass: [{
|
6274
6266
|
type: HostBinding,
|
@@ -6755,7 +6747,7 @@ class TableBodyComponent {
|
|
6755
6747
|
}
|
6756
6748
|
checkboxClick(cell, row, eventArg) {
|
6757
6749
|
const isCheckboxCell = hasClasses(cell, 'k-checkbox-cell');
|
6758
|
-
const isCheckbox =
|
6750
|
+
const isCheckbox = eventArg.target.closest('.k-checkbox-wrap');
|
6759
6751
|
if (isCheckboxCell && !isCheckbox && this.selection.settings.checkboxOnly) {
|
6760
6752
|
return;
|
6761
6753
|
}
|
@@ -6763,7 +6755,8 @@ class TableBodyComponent {
|
|
6763
6755
|
this.selection.enabled && this.selection.rowSelection) {
|
6764
6756
|
const args = this.cellClickArgs(cell, row, eventArg);
|
6765
6757
|
this.selection.checkboxClick(args);
|
6766
|
-
|
6758
|
+
const isChecked = isCheckbox?.firstElementChild.classList.contains('k-checked');
|
6759
|
+
if (isChecked !== this.selection.isRowSelected(args.dataItem)) {
|
6767
6760
|
eventArg.preventDefault();
|
6768
6761
|
}
|
6769
6762
|
return true;
|
@@ -8188,7 +8181,7 @@ class ListComponent {
|
|
8188
8181
|
DOMMouseScroll: lockedMousewheel
|
8189
8182
|
}"
|
8190
8183
|
[scope]="this">
|
8191
|
-
<div role="presentation"
|
8184
|
+
<div role="presentation">
|
8192
8185
|
<table
|
8193
8186
|
kendoTreeListResizableTable
|
8194
8187
|
[locked]="true"
|
@@ -8227,7 +8220,7 @@ class ListComponent {
|
|
8227
8220
|
[kendoTreeListResizableContainer]="lockedLeafColumns.length > 0"
|
8228
8221
|
[lockedWidth]="lockedWidth + 1"
|
8229
8222
|
>
|
8230
|
-
<div role="presentation"
|
8223
|
+
<div role="presentation">
|
8231
8224
|
<table
|
8232
8225
|
[style.width.px]="nonLockedWidth"
|
8233
8226
|
#table
|
@@ -8290,7 +8283,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
8290
8283
|
DOMMouseScroll: lockedMousewheel
|
8291
8284
|
}"
|
8292
8285
|
[scope]="this">
|
8293
|
-
<div role="presentation"
|
8286
|
+
<div role="presentation">
|
8294
8287
|
<table
|
8295
8288
|
kendoTreeListResizableTable
|
8296
8289
|
[locked]="true"
|
@@ -8329,7 +8322,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
8329
8322
|
[kendoTreeListResizableContainer]="lockedLeafColumns.length > 0"
|
8330
8323
|
[lockedWidth]="lockedWidth + 1"
|
8331
8324
|
>
|
8332
|
-
<div role="presentation"
|
8325
|
+
<div role="presentation">
|
8333
8326
|
<table
|
8334
8327
|
[style.width.px]="nonLockedWidth"
|
8335
8328
|
#table
|
@@ -9641,16 +9634,16 @@ class StringFilterCellComponent extends StringFilterComponent {
|
|
9641
9634
|
[operators]="operators"
|
9642
9635
|
[defaultOperator]="operator"
|
9643
9636
|
[showOperators]="showOperators">
|
9644
|
-
<
|
9645
|
-
class="k-textbox k-input k-input-md k-rounded-md k-input-solid"
|
9637
|
+
<kendo-textbox
|
9646
9638
|
kendoTreeListFocusable
|
9647
9639
|
kendoFilterInput
|
9648
9640
|
[columnLabel]="columnLabel"
|
9649
9641
|
[filterDelay]="filterDelay"
|
9650
|
-
[
|
9651
|
-
[ngModel]="currentFilter?.value"
|
9642
|
+
[placeholder]="placeholder"
|
9643
|
+
[ngModel]="currentFilter?.value ?? null"
|
9644
|
+
></kendo-textbox>
|
9652
9645
|
</kendo-treelist-filter-wrapper-cell>
|
9653
|
-
`, isInline: true, dependencies: [{ kind: "component", type: FilterCellWrapperComponent, selector: "kendo-treelist-filter-wrapper-cell", inputs: ["showOperators"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.
|
9646
|
+
`, isInline: true, dependencies: [{ kind: "component", type: FilterCellWrapperComponent, selector: "kendo-treelist-filter-wrapper-cell", inputs: ["showOperators"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: FocusableDirective, selector: "[kendoTreeListFocusable],\n [kendoTreeListAddCommand],\n [kendoTreeListEditCommand],\n [kendoTreeListRemoveCommand],\n [kendoTreeListSaveCommand],\n [kendoTreeListCancelCommand]\n ", inputs: ["kendoTreeListFocusable", "enabled", "kendoTreeListAddCommand", "kendoTreeListEditCommand", "kendoTreeListRemoveCommand", "kendoTreeListSaveCommand", "kendoTreeListCancelCommand"] }, { kind: "directive", type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "column", "value"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength", "inputAttributes"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }] });
|
9654
9647
|
}
|
9655
9648
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StringFilterCellComponent, decorators: [{
|
9656
9649
|
type: Component,
|
@@ -9663,18 +9656,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
9663
9656
|
[operators]="operators"
|
9664
9657
|
[defaultOperator]="operator"
|
9665
9658
|
[showOperators]="showOperators">
|
9666
|
-
<
|
9667
|
-
class="k-textbox k-input k-input-md k-rounded-md k-input-solid"
|
9659
|
+
<kendo-textbox
|
9668
9660
|
kendoTreeListFocusable
|
9669
9661
|
kendoFilterInput
|
9670
9662
|
[columnLabel]="columnLabel"
|
9671
9663
|
[filterDelay]="filterDelay"
|
9672
|
-
[
|
9673
|
-
[ngModel]="currentFilter?.value"
|
9664
|
+
[placeholder]="placeholder"
|
9665
|
+
[ngModel]="currentFilter?.value ?? null"
|
9666
|
+
></kendo-textbox>
|
9674
9667
|
</kendo-treelist-filter-wrapper-cell>
|
9675
9668
|
`,
|
9676
9669
|
standalone: true,
|
9677
|
-
imports: [FilterCellWrapperComponent, ReactiveFormsModule, FocusableDirective, FilterInputDirective, FormsModule]
|
9670
|
+
imports: [FilterCellWrapperComponent, ReactiveFormsModule, FocusableDirective, FilterInputDirective, FormsModule, TextBoxComponent]
|
9678
9671
|
}]
|
9679
9672
|
}], ctorParameters: function () { return [{ type: FilterService }, { type: i1$1.LocalizationService }]; }, propDecorators: { filterDelay: [{
|
9680
9673
|
type: Input
|
@@ -9998,15 +9991,12 @@ class BooleanFilterComponent extends BaseFilterCellComponent {
|
|
9998
9991
|
this.defaultItem = { text: this.localization.get("filterBooleanAll"), value: null };
|
9999
9992
|
}
|
10000
9993
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BooleanFilterComponent, deps: [{ token: FilterService }, { token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
|
10001
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: BooleanFilterComponent, inputs: { column: "column" },
|
9994
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: BooleanFilterComponent, inputs: { column: "column" }, usesInheritance: true, ngImport: i0 });
|
10002
9995
|
}
|
10003
9996
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BooleanFilterComponent, decorators: [{
|
10004
9997
|
type: Directive,
|
10005
9998
|
args: [{}]
|
10006
|
-
}], ctorParameters: function () { return [{ type: FilterService }, { type: i1$1.LocalizationService }]; }, propDecorators: {
|
10007
|
-
type: HostBinding,
|
10008
|
-
args: ['class.k-filtercell-boolean']
|
10009
|
-
}], column: [{
|
9999
|
+
}], ctorParameters: function () { return [{ type: FilterService }, { type: i1$1.LocalizationService }]; }, propDecorators: { column: [{
|
10010
10000
|
type: Input
|
10011
10001
|
}] } });
|
10012
10002
|
|
@@ -10944,15 +10934,15 @@ class StringFilterMenuInputComponent {
|
|
10944
10934
|
[currentFilter]="currentFilter"
|
10945
10935
|
[filterService]="filterService"
|
10946
10936
|
>
|
10947
|
-
<
|
10948
|
-
kendoTextBox
|
10937
|
+
<kendo-textbox
|
10949
10938
|
kendoFilterInput
|
10950
10939
|
[columnLabel]="columnLabel"
|
10951
10940
|
[filterDelay]="0"
|
10952
|
-
[
|
10953
|
-
[ngModel]="currentFilter?.value"
|
10941
|
+
[placeholder]="placeholder"
|
10942
|
+
[ngModel]="currentFilter?.value ?? null"
|
10943
|
+
></kendo-textbox>
|
10954
10944
|
</kendo-treelist-filter-menu-input-wrapper>
|
10955
|
-
`, isInline: true, dependencies: [{ kind: "component", type: FilterMenuInputWrapperComponent, selector: "kendo-treelist-filter-menu-input-wrapper", inputs: ["filterService", "currentFilter"] }, { kind: "
|
10945
|
+
`, isInline: true, dependencies: [{ kind: "component", type: FilterMenuInputWrapperComponent, selector: "kendo-treelist-filter-menu-input-wrapper", inputs: ["filterService", "currentFilter"] }, { kind: "component", type: TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength", "inputAttributes"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "column", "value"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] });
|
10956
10946
|
}
|
10957
10947
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StringFilterMenuInputComponent, decorators: [{
|
10958
10948
|
type: Component,
|
@@ -10967,17 +10957,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
10967
10957
|
[currentFilter]="currentFilter"
|
10968
10958
|
[filterService]="filterService"
|
10969
10959
|
>
|
10970
|
-
<
|
10971
|
-
kendoTextBox
|
10960
|
+
<kendo-textbox
|
10972
10961
|
kendoFilterInput
|
10973
10962
|
[columnLabel]="columnLabel"
|
10974
10963
|
[filterDelay]="0"
|
10975
|
-
[
|
10976
|
-
[ngModel]="currentFilter?.value"
|
10964
|
+
[placeholder]="placeholder"
|
10965
|
+
[ngModel]="currentFilter?.value ?? null"
|
10966
|
+
></kendo-textbox>
|
10977
10967
|
</kendo-treelist-filter-menu-input-wrapper>
|
10978
10968
|
`,
|
10979
10969
|
standalone: true,
|
10980
|
-
imports: [FilterMenuInputWrapperComponent,
|
10970
|
+
imports: [FilterMenuInputWrapperComponent, TextBoxComponent, ReactiveFormsModule, FilterInputDirective, FormsModule]
|
10981
10971
|
}]
|
10982
10972
|
}], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; }, propDecorators: { operators: [{
|
10983
10973
|
type: Input
|
@@ -11846,19 +11836,19 @@ class BooleanFilterMenuComponent extends BooleanFilterComponent {
|
|
11846
11836
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: BooleanFilterMenuComponent, isStandalone: true, 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: `
|
11847
11837
|
<ul class="k-radio-list k-reset">
|
11848
11838
|
<li *ngFor="let item of items">
|
11849
|
-
<
|
11850
|
-
|
11839
|
+
<kendo-radiobutton
|
11840
|
+
#inputElem
|
11851
11841
|
kendoFilterMenuRadioButton
|
11852
11842
|
[columnLabel]="columnLabel"
|
11853
11843
|
[name]="idPrefix"
|
11854
11844
|
[checked]="isSelected(item.value)"
|
11855
11845
|
[attr.id]="radioId(item.value)"
|
11856
|
-
(
|
11857
|
-
|
11846
|
+
(checkedChange)="onChange(item.value)"
|
11847
|
+
></kendo-radiobutton>
|
11858
11848
|
<label class="k-radio-label" [attr.for]="radioId(item.value)">{{item.text}}</label>
|
11859
11849
|
</li>
|
11860
11850
|
</ul>
|
11861
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "
|
11851
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: RadioButtonComponent, selector: "kendo-radiobutton", inputs: ["checked"], outputs: ["checkedChange"], exportAs: ["kendoRadioButton"] }, { kind: "directive", type: BooleanFilterRadioButtonDirective, selector: "[kendoFilterMenuRadioButton]", inputs: ["columnLabel"] }] });
|
11862
11852
|
}
|
11863
11853
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BooleanFilterMenuComponent, decorators: [{
|
11864
11854
|
type: Component,
|
@@ -11867,21 +11857,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
11867
11857
|
template: `
|
11868
11858
|
<ul class="k-radio-list k-reset">
|
11869
11859
|
<li *ngFor="let item of items">
|
11870
|
-
<
|
11871
|
-
|
11860
|
+
<kendo-radiobutton
|
11861
|
+
#inputElem
|
11872
11862
|
kendoFilterMenuRadioButton
|
11873
11863
|
[columnLabel]="columnLabel"
|
11874
11864
|
[name]="idPrefix"
|
11875
11865
|
[checked]="isSelected(item.value)"
|
11876
11866
|
[attr.id]="radioId(item.value)"
|
11877
|
-
(
|
11878
|
-
|
11867
|
+
(checkedChange)="onChange(item.value)"
|
11868
|
+
></kendo-radiobutton>
|
11879
11869
|
<label class="k-radio-label" [attr.for]="radioId(item.value)">{{item.text}}</label>
|
11880
11870
|
</li>
|
11881
11871
|
</ul>
|
11882
11872
|
`,
|
11883
11873
|
standalone: true,
|
11884
|
-
imports: [NgFor,
|
11874
|
+
imports: [NgFor, RadioButtonComponent, BooleanFilterRadioButtonDirective]
|
11885
11875
|
}]
|
11886
11876
|
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i1$1.LocalizationService }, { type: i1$2.DomSanitizer }]; }, propDecorators: { hostClasses: [{
|
11887
11877
|
type: HostBinding,
|
@@ -12526,6 +12516,7 @@ class ColumnListComponent {
|
|
12526
12516
|
applyText;
|
12527
12517
|
resetText;
|
12528
12518
|
actionsClass = 'k-actions';
|
12519
|
+
checkboxes;
|
12529
12520
|
hasLocked;
|
12530
12521
|
hasVisibleLocked;
|
12531
12522
|
unlockedCount = 0;
|
@@ -12549,22 +12540,26 @@ class ColumnListComponent {
|
|
12549
12540
|
}
|
12550
12541
|
this.ngZone.runOutsideAngular(() => {
|
12551
12542
|
this.domSubscriptions = this.renderer.listen(this.element.nativeElement, 'click', (e) => {
|
12552
|
-
|
12553
|
-
|
12554
|
-
|
12555
|
-
|
12556
|
-
|
12557
|
-
|
12558
|
-
this.
|
12559
|
-
|
12560
|
-
|
12561
|
-
|
12543
|
+
this.ngZone.onStable.pipe(take(1)).subscribe(() => {
|
12544
|
+
const closestItem = e.target.closest('.k-checkbox-wrap');
|
12545
|
+
if (closestItem) {
|
12546
|
+
if (this.autoSync) {
|
12547
|
+
const checkbox = this.checkboxes.find(checkBox => checkBox.hostElement.nativeElement === closestItem);
|
12548
|
+
const index = parseInt(closestItem.firstElementChild.getAttribute('data-index'), 10);
|
12549
|
+
const column = this.columns[index];
|
12550
|
+
const hidden = !checkbox.checkedState;
|
12551
|
+
if (Boolean(column.hidden) !== hidden) {
|
12552
|
+
this.ngZone.run(() => {
|
12553
|
+
column.hidden = hidden;
|
12554
|
+
this.columnChange.emit([column]);
|
12555
|
+
});
|
12556
|
+
}
|
12557
|
+
}
|
12558
|
+
else {
|
12559
|
+
this.ngZone.run(() => this.updateDisabled());
|
12562
12560
|
}
|
12563
12561
|
}
|
12564
|
-
|
12565
|
-
this.updateDisabled();
|
12566
|
-
}
|
12567
|
-
}
|
12562
|
+
});
|
12568
12563
|
});
|
12569
12564
|
});
|
12570
12565
|
}
|
@@ -12574,17 +12569,17 @@ class ColumnListComponent {
|
|
12574
12569
|
}
|
12575
12570
|
}
|
12576
12571
|
cancelChanges() {
|
12577
|
-
this.
|
12578
|
-
|
12572
|
+
this.checkboxes.forEach((item, index) => {
|
12573
|
+
item.checkedState = !this.columns[index].hidden;
|
12579
12574
|
});
|
12580
12575
|
this.updateDisabled();
|
12581
12576
|
this.reset.emit();
|
12582
12577
|
}
|
12583
12578
|
applyChanges() {
|
12584
12579
|
const changed = [];
|
12585
|
-
this.
|
12580
|
+
this.checkboxes.forEach((item, index) => {
|
12586
12581
|
const column = this.columns[index];
|
12587
|
-
const hidden = !
|
12582
|
+
const hidden = !item.checkedState;
|
12588
12583
|
if (Boolean(column.hidden) !== hidden) {
|
12589
12584
|
column.hidden = hidden;
|
12590
12585
|
changed.push(column);
|
@@ -12593,20 +12588,13 @@ class ColumnListComponent {
|
|
12593
12588
|
this.updateDisabled();
|
12594
12589
|
this.apply.emit(changed);
|
12595
12590
|
}
|
12596
|
-
forEachCheckBox(callback) {
|
12597
|
-
const checkboxes = this.element.nativeElement.getElementsByClassName('k-checkbox');
|
12598
|
-
const length = checkboxes.length;
|
12599
|
-
for (let idx = 0; idx < length; idx++) {
|
12600
|
-
callback(checkboxes[idx], idx);
|
12601
|
-
}
|
12602
|
-
}
|
12603
12591
|
updateDisabled() {
|
12604
12592
|
if (this.allowHideAll && !this.hasLocked) {
|
12605
12593
|
return;
|
12606
12594
|
}
|
12607
12595
|
const checkedItems = [];
|
12608
|
-
this.
|
12609
|
-
if (checkbox.
|
12596
|
+
this.checkboxes.forEach((checkbox, index) => {
|
12597
|
+
if (checkbox.checkedState) {
|
12610
12598
|
checkedItems.push({ checkbox, index });
|
12611
12599
|
}
|
12612
12600
|
checkbox.disabled = false;
|
@@ -12637,15 +12625,14 @@ class ColumnListComponent {
|
|
12637
12625
|
}
|
12638
12626
|
}
|
12639
12627
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ColumnListComponent, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
|
12640
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ColumnListComponent, isStandalone: true, selector: "kendo-treelist-columnlist", inputs: { columns: "columns", autoSync: "autoSync", allowHideAll: "allowHideAll", applyText: "applyText", resetText: "resetText", actionsClass: "actionsClass" }, outputs: { reset: "reset", apply: "apply", columnChange: "columnChange" }, host: { properties: { "class.k-column-list-wrapper": "this.className" } }, ngImport: i0, template: `
|
12628
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ColumnListComponent, isStandalone: true, selector: "kendo-treelist-columnlist", inputs: { columns: "columns", autoSync: "autoSync", allowHideAll: "allowHideAll", applyText: "applyText", resetText: "resetText", actionsClass: "actionsClass" }, outputs: { reset: "reset", apply: "apply", columnChange: "columnChange" }, host: { properties: { "class.k-column-list-wrapper": "this.className" } }, viewQueries: [{ propertyName: "checkboxes", predicate: CheckBoxComponent, descendants: true }], ngImport: i0, template: `
|
12641
12629
|
<div class="k-column-list">
|
12642
12630
|
<label *ngFor="let column of columns; let index = index;" class='k-column-list-item'>
|
12643
|
-
<
|
12644
|
-
|
12645
|
-
|
12646
|
-
[
|
12647
|
-
|
12648
|
-
[disabled]="isDisabled(column)" />
|
12631
|
+
<kendo-checkbox
|
12632
|
+
[inputAttributes]="{'data-index': index.toString()}"
|
12633
|
+
[checkedState]="!column.hidden"
|
12634
|
+
[disabled]="isDisabled(column)"
|
12635
|
+
></kendo-checkbox>
|
12649
12636
|
<span class="k-checkbox-label">{{ column.displayTitle }}</span>
|
12650
12637
|
</label>
|
12651
12638
|
</div>
|
@@ -12663,7 +12650,7 @@ class ColumnListComponent {
|
|
12663
12650
|
{{ applyText }}
|
12664
12651
|
</button>
|
12665
12652
|
</div>
|
12666
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
12653
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: CheckBoxComponent, selector: "kendo-checkbox", inputs: ["checkedState", "rounded"], outputs: ["checkedStateChange"], exportAs: ["kendoCheckBox"] }] });
|
12667
12654
|
}
|
12668
12655
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ColumnListComponent, decorators: [{
|
12669
12656
|
type: Component,
|
@@ -12672,12 +12659,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
12672
12659
|
template: `
|
12673
12660
|
<div class="k-column-list">
|
12674
12661
|
<label *ngFor="let column of columns; let index = index;" class='k-column-list-item'>
|
12675
|
-
<
|
12676
|
-
|
12677
|
-
|
12678
|
-
[
|
12679
|
-
|
12680
|
-
[disabled]="isDisabled(column)" />
|
12662
|
+
<kendo-checkbox
|
12663
|
+
[inputAttributes]="{'data-index': index.toString()}"
|
12664
|
+
[checkedState]="!column.hidden"
|
12665
|
+
[disabled]="isDisabled(column)"
|
12666
|
+
></kendo-checkbox>
|
12681
12667
|
<span class="k-checkbox-label">{{ column.displayTitle }}</span>
|
12682
12668
|
</label>
|
12683
12669
|
</div>
|
@@ -12697,7 +12683,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
12697
12683
|
</div>
|
12698
12684
|
`,
|
12699
12685
|
standalone: true,
|
12700
|
-
imports: [NgFor, NgIf, NgClass]
|
12686
|
+
imports: [NgFor, NgIf, NgClass, CheckBoxComponent]
|
12701
12687
|
}]
|
12702
12688
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Renderer2 }]; }, propDecorators: { className: [{
|
12703
12689
|
type: HostBinding,
|
@@ -12720,6 +12706,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
12720
12706
|
type: Input
|
12721
12707
|
}], actionsClass: [{
|
12722
12708
|
type: Input
|
12709
|
+
}], checkboxes: [{
|
12710
|
+
type: ViewChildren,
|
12711
|
+
args: [CheckBoxComponent]
|
12723
12712
|
}] } });
|
12724
12713
|
|
12725
12714
|
/**
|
@@ -13551,8 +13540,8 @@ class HeaderComponent {
|
|
13551
13540
|
return column.isCheckboxColumn && column.showSelectAll && !column.headerTemplateRef &&
|
13552
13541
|
this.selectionService.enableMultiple;
|
13553
13542
|
}
|
13554
|
-
|
13555
|
-
this.selectionService.toggleAll(
|
13543
|
+
selectAllChange(state) {
|
13544
|
+
this.selectionService.toggleAll(state);
|
13556
13545
|
}
|
13557
13546
|
sortDescriptor(field) {
|
13558
13547
|
return this.sort.find(item => item.field === field) || { field };
|
@@ -13718,7 +13707,7 @@ class HeaderComponent {
|
|
13718
13707
|
<ng-container *ngIf="!column.headerTemplateRef">
|
13719
13708
|
<span class="k-column-title">{{column.displayTitle}}</span>
|
13720
13709
|
</ng-container>
|
13721
|
-
<span class
|
13710
|
+
<span [class.k-sort-icon]="sortDescriptor(getColumnComponent(column).field).dir">
|
13722
13711
|
<kendo-icon-wrapper
|
13723
13712
|
*ngIf="sortDescriptor(getColumnComponent(column).field).dir"
|
13724
13713
|
role="note" [attr.aria-label]="sortableLabel"
|
@@ -13745,12 +13734,11 @@ class HeaderComponent {
|
|
13745
13734
|
</span>
|
13746
13735
|
</ng-template>
|
13747
13736
|
<ng-template [ngIf]="renderSelectAll(column)">
|
13748
|
-
<
|
13749
|
-
|
13750
|
-
class="k-checkbox k-checkbox-md k-rounded-md"
|
13751
|
-
[attr.aria-label]="messageFor('selectAllRowsCheckboxLabel')"
|
13737
|
+
<kendo-checkbox
|
13738
|
+
[inputAttributes]="{'aria-label': messageFor('selectAllRowsCheckboxLabel')}"
|
13752
13739
|
kendoTreeListFocusable
|
13753
|
-
(
|
13740
|
+
(checkedStateChange)="selectAllChange($event)"
|
13741
|
+
></kendo-checkbox>
|
13754
13742
|
</ng-template>
|
13755
13743
|
<span kendoTreeListColumnHandle
|
13756
13744
|
kendoDraggable
|
@@ -13823,7 +13811,7 @@ class HeaderComponent {
|
|
13823
13811
|
[logicalSlaveCellsCount]="unlockedColumnsCount"
|
13824
13812
|
>
|
13825
13813
|
</tr>
|
13826
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: LogicalRowDirective, selector: "[kendoTreeListLogicalRow]", inputs: ["logicalRowIndex", "logicalSlaveRow", "logicalCellsCount", "logicalSlaveCellsCount", "dataRowIndex", "dataItem", "isNew", "totalColumns"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: LogicalCellDirective, selector: "[kendoTreeListLogicalCell]", inputs: ["logicalColIndex", "logicalRowIndex", "logicalSlaveCell", "column", "colIndex", "colSpan", "rowSpan", "dataRowIndex", "dataItem", "expandable"] }, { kind: "directive", type: DropTargetDirective, selector: "[kendoDropTarget]", inputs: ["context"], outputs: ["enter", "leave", "drop"] }, { kind: "directive", type: DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { kind: "directive", type: DraggableColumnDirective, selector: "[kendoDraggableColumn]", inputs: ["context", "enableDrag"], outputs: ["drag"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: FilterMenuComponent, selector: "kendo-treelist-filter-menu", inputs: ["column", "filter"] }, { kind: "component", type: ColumnMenuComponent, selector: "kendo-treelist-column-menu", inputs: ["standalone", "column", "settings", "sort", "filter", "sortable", "columnMenuTemplate"] }, { kind: "directive", type: TemplateContextDirective, selector: "[templateContext]", inputs: ["templateContext"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: FocusableDirective, selector: "[kendoTreeListFocusable],\n [kendoTreeListAddCommand],\n [kendoTreeListEditCommand],\n [kendoTreeListRemoveCommand],\n [kendoTreeListSaveCommand],\n [kendoTreeListCancelCommand]\n ", inputs: ["kendoTreeListFocusable", "enabled", "kendoTreeListAddCommand", "kendoTreeListEditCommand", "kendoTreeListRemoveCommand", "kendoTreeListSaveCommand", "kendoTreeListCancelCommand"] }, { kind: "directive", type: ColumnHandleDirective, selector: "[kendoTreeListColumnHandle]", inputs: ["columns", "column"] }, { kind: "component", type: FilterRowComponent, selector: "[kendoTreeListFilterRow]", inputs: ["columns", "filter", "logicalRowIndex", "lockedColumnsCount"] }] });
|
13814
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: LogicalRowDirective, selector: "[kendoTreeListLogicalRow]", inputs: ["logicalRowIndex", "logicalSlaveRow", "logicalCellsCount", "logicalSlaveCellsCount", "dataRowIndex", "dataItem", "isNew", "totalColumns"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: LogicalCellDirective, selector: "[kendoTreeListLogicalCell]", inputs: ["logicalColIndex", "logicalRowIndex", "logicalSlaveCell", "column", "colIndex", "colSpan", "rowSpan", "dataRowIndex", "dataItem", "expandable"] }, { kind: "directive", type: DropTargetDirective, selector: "[kendoDropTarget]", inputs: ["context"], outputs: ["enter", "leave", "drop"] }, { kind: "directive", type: DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { kind: "directive", type: DraggableColumnDirective, selector: "[kendoDraggableColumn]", inputs: ["context", "enableDrag"], outputs: ["drag"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: FilterMenuComponent, selector: "kendo-treelist-filter-menu", inputs: ["column", "filter"] }, { kind: "component", type: ColumnMenuComponent, selector: "kendo-treelist-column-menu", inputs: ["standalone", "column", "settings", "sort", "filter", "sortable", "columnMenuTemplate"] }, { kind: "directive", type: TemplateContextDirective, selector: "[templateContext]", inputs: ["templateContext"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: FocusableDirective, selector: "[kendoTreeListFocusable],\n [kendoTreeListAddCommand],\n [kendoTreeListEditCommand],\n [kendoTreeListRemoveCommand],\n [kendoTreeListSaveCommand],\n [kendoTreeListCancelCommand]\n ", inputs: ["kendoTreeListFocusable", "enabled", "kendoTreeListAddCommand", "kendoTreeListEditCommand", "kendoTreeListRemoveCommand", "kendoTreeListSaveCommand", "kendoTreeListCancelCommand"] }, { kind: "directive", type: ColumnHandleDirective, selector: "[kendoTreeListColumnHandle]", inputs: ["columns", "column"] }, { kind: "component", type: FilterRowComponent, selector: "[kendoTreeListFilterRow]", inputs: ["columns", "filter", "logicalRowIndex", "lockedColumnsCount"] }, { kind: "component", type: CheckBoxComponent, selector: "kendo-checkbox", inputs: ["checkedState", "rounded"], outputs: ["checkedStateChange"], exportAs: ["kendoCheckBox"] }] });
|
13827
13815
|
}
|
13828
13816
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: HeaderComponent, decorators: [{
|
13829
13817
|
type: Component,
|
@@ -13906,7 +13894,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
13906
13894
|
<ng-container *ngIf="!column.headerTemplateRef">
|
13907
13895
|
<span class="k-column-title">{{column.displayTitle}}</span>
|
13908
13896
|
</ng-container>
|
13909
|
-
<span class
|
13897
|
+
<span [class.k-sort-icon]="sortDescriptor(getColumnComponent(column).field).dir">
|
13910
13898
|
<kendo-icon-wrapper
|
13911
13899
|
*ngIf="sortDescriptor(getColumnComponent(column).field).dir"
|
13912
13900
|
role="note" [attr.aria-label]="sortableLabel"
|
@@ -13933,12 +13921,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
13933
13921
|
</span>
|
13934
13922
|
</ng-template>
|
13935
13923
|
<ng-template [ngIf]="renderSelectAll(column)">
|
13936
|
-
<
|
13937
|
-
|
13938
|
-
class="k-checkbox k-checkbox-md k-rounded-md"
|
13939
|
-
[attr.aria-label]="messageFor('selectAllRowsCheckboxLabel')"
|
13924
|
+
<kendo-checkbox
|
13925
|
+
[inputAttributes]="{'aria-label': messageFor('selectAllRowsCheckboxLabel')}"
|
13940
13926
|
kendoTreeListFocusable
|
13941
|
-
(
|
13927
|
+
(checkedStateChange)="selectAllChange($event)"
|
13928
|
+
></kendo-checkbox>
|
13942
13929
|
</ng-template>
|
13943
13930
|
<span kendoTreeListColumnHandle
|
13944
13931
|
kendoDraggable
|
@@ -14013,7 +14000,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
14013
14000
|
</tr>
|
14014
14001
|
`,
|
14015
14002
|
standalone: true,
|
14016
|
-
imports: [NgFor, LogicalRowDirective, NgIf, LogicalCellDirective, DropTargetDirective, DraggableDirective, DraggableColumnDirective, NgClass, NgStyle, FilterMenuComponent, ColumnMenuComponent, TemplateContextDirective, IconWrapperComponent, FocusableDirective, ColumnHandleDirective, FilterRowComponent]
|
14003
|
+
imports: [NgFor, LogicalRowDirective, NgIf, LogicalCellDirective, DropTargetDirective, DraggableDirective, DraggableColumnDirective, NgClass, NgStyle, FilterMenuComponent, ColumnMenuComponent, TemplateContextDirective, IconWrapperComponent, FocusableDirective, ColumnHandleDirective, FilterRowComponent, CheckBoxComponent]
|
14017
14004
|
}]
|
14018
14005
|
}], ctorParameters: function () { return [{ type: SinglePopupService }, { type: DragHintService }, { type: DropCueService }, { type: ColumnReorderService }, { type: SortService }, { type: SelectionService }, { type: i1$1.LocalizationService }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { totalColumnLevels: [{
|
14019
14006
|
type: Input
|
@@ -21455,7 +21442,7 @@ class TreeListModule {
|
|
21455
21442
|
DialogService,
|
21456
21443
|
WindowService,
|
21457
21444
|
WindowContainerService
|
21458
|
-
], imports: [TreeListComponent, FilterCellOperatorsComponent, i47.CustomMessagesComponent, i47.PagerInfoComponent, i47.PagerInputComponent, i47.PagerNextButtonsComponent, i47.PagerNumericButtonsComponent, i47.PagerPageSizesComponent, i47.PagerPrevButtonsComponent, i47.PagerComponent, i47.PagerSpacerComponent, CellComponent, EditCommandDirective, CancelCommandDirective, SaveCommandDirective, RemoveCommandDirective, AddCommandDirective, HeaderComponent, StringFilterCellComponent, NumericFilterCellComponent, AutoCompleteFilterCellComponent, BooleanFilterCellComponent, FilterCellWrapperComponent, DateFilterCellComponent, FilterCellOperatorsComponent, FilterCellOperatorsComponent, i47.CustomMessagesComponent, i47.PagerInfoComponent, i47.PagerInputComponent, i47.PagerNextButtonsComponent, i47.PagerNumericButtonsComponent, i47.PagerPageSizesComponent, i47.PagerPrevButtonsComponent, i47.PagerComponent, i47.PagerSpacerComponent, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuInputWrapperComponent, StringFilterMenuInputComponent, StringFilterMenuComponent, NumericFilterMenuComponent, NumericFilterMenuInputComponent, DateFilterMenuInputComponent, DateFilterMenuComponent, ColumnChooserComponent, ColumnMenuChooserComponent, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuSortComponent, ColumnMenuComponent, ColumnMenuLockComponent, i95.ToolBarComponent, i95.ToolbarCustomMessagesComponent, i95.ToolBarButtonComponent, i95.ToolBarButtonGroupComponent, i95.ToolBarDropDownButtonComponent, i95.ToolBarSeparatorComponent, i95.ToolBarSpacerComponent, i95.ToolBarSplitButtonComponent] });
|
21445
|
+
], imports: [TreeListComponent, FilterCellOperatorsComponent, i47.CustomMessagesComponent, i47.PagerInfoComponent, i47.PagerInputComponent, i47.PagerNextButtonsComponent, i47.PagerNumericButtonsComponent, i47.PagerPageSizesComponent, i47.PagerPrevButtonsComponent, i47.PagerComponent, i47.PagerSpacerComponent, CellComponent, EditCommandDirective, CancelCommandDirective, SaveCommandDirective, RemoveCommandDirective, AddCommandDirective, HeaderComponent, StringFilterCellComponent, NumericFilterCellComponent, AutoCompleteFilterCellComponent, BooleanFilterCellComponent, FilterCellWrapperComponent, DateFilterCellComponent, FilterCellOperatorsComponent, FilterCellOperatorsComponent, i47.CustomMessagesComponent, i47.PagerInfoComponent, i47.PagerInputComponent, i47.PagerNextButtonsComponent, i47.PagerNumericButtonsComponent, i47.PagerPageSizesComponent, i47.PagerPrevButtonsComponent, i47.PagerComponent, i47.PagerSpacerComponent, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuInputWrapperComponent, StringFilterMenuInputComponent, StringFilterMenuComponent, NumericFilterMenuComponent, NumericFilterMenuInputComponent, DateFilterMenuInputComponent, DateFilterMenuComponent, BooleanFilterMenuComponent, ColumnChooserComponent, ColumnMenuChooserComponent, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuSortComponent, ColumnMenuComponent, ColumnMenuLockComponent, i95.ToolBarComponent, i95.ToolbarCustomMessagesComponent, i95.ToolBarButtonComponent, i95.ToolBarButtonGroupComponent, i95.ToolBarDropDownButtonComponent, i95.ToolBarSeparatorComponent, i95.ToolBarSpacerComponent, i95.ToolBarSplitButtonComponent] });
|
21459
21446
|
}
|
21460
21447
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TreeListModule, decorators: [{
|
21461
21448
|
type: NgModule,
|
@@ -21537,7 +21524,7 @@ const ENTRY_COMPONENTS = [
|
|
21537
21524
|
class FilterMenuModule {
|
21538
21525
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
21539
21526
|
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: FilterMenuModule, imports: [FilterMenuComponent, FilterMenuContainerComponent, FilterMenuInputWrapperComponent, StringFilterMenuInputComponent, StringFilterMenuComponent, FilterMenuTemplateDirective, NumericFilterMenuComponent, NumericFilterMenuInputComponent, DateFilterMenuInputComponent, DateFilterMenuComponent, FilterMenuHostDirective, BooleanFilterMenuComponent, BooleanFilterRadioButtonDirective, FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, FilterInputDirective, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, ColGroupComponent, ResizableContainerDirective, i1$4.TemplateContextDirective, FieldAccessorPipe, SpanColumnComponent, LoadingComponent, FilterCellOperatorsComponent, CheckboxColumnComponent, RowReorderColumnComponent, i47.CustomMessagesComponent, i47.PagerFocusableDirective, i47.PagerInfoComponent, i47.PagerInputComponent, i47.PagerNextButtonsComponent, i47.PagerNumericButtonsComponent, i47.PagerPageSizesComponent, i47.PagerPrevButtonsComponent, i47.PagerTemplateDirective, i47.PagerComponent, i47.PagerSpacerComponent], exports: [FilterMenuComponent, FilterMenuContainerComponent, FilterMenuInputWrapperComponent, StringFilterMenuInputComponent, StringFilterMenuComponent, FilterMenuTemplateDirective, NumericFilterMenuComponent, NumericFilterMenuInputComponent, DateFilterMenuInputComponent, DateFilterMenuComponent, FilterMenuHostDirective, BooleanFilterMenuComponent, BooleanFilterRadioButtonDirective, FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, FilterInputDirective, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, ColGroupComponent, ResizableContainerDirective, i1$4.TemplateContextDirective, FieldAccessorPipe, SpanColumnComponent, LoadingComponent, FilterCellOperatorsComponent, CheckboxColumnComponent, RowReorderColumnComponent, i47.CustomMessagesComponent, i47.PagerFocusableDirective, i47.PagerInfoComponent, i47.PagerInputComponent, i47.PagerNextButtonsComponent, i47.PagerNumericButtonsComponent, i47.PagerPageSizesComponent, i47.PagerPrevButtonsComponent, i47.PagerTemplateDirective, i47.PagerComponent, i47.PagerSpacerComponent] });
|
21540
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterMenuModule, imports: [FilterMenuComponent, FilterMenuContainerComponent, FilterMenuInputWrapperComponent, StringFilterMenuInputComponent, StringFilterMenuComponent, NumericFilterMenuComponent, NumericFilterMenuInputComponent, DateFilterMenuInputComponent, DateFilterMenuComponent, FilterCellOperatorsComponent, FilterCellOperatorsComponent, i47.CustomMessagesComponent, i47.PagerInfoComponent, i47.PagerInputComponent, i47.PagerNextButtonsComponent, i47.PagerNumericButtonsComponent, i47.PagerPageSizesComponent, i47.PagerPrevButtonsComponent, i47.PagerComponent, i47.PagerSpacerComponent] });
|
21527
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterMenuModule, imports: [FilterMenuComponent, FilterMenuContainerComponent, FilterMenuInputWrapperComponent, StringFilterMenuInputComponent, StringFilterMenuComponent, NumericFilterMenuComponent, NumericFilterMenuInputComponent, DateFilterMenuInputComponent, DateFilterMenuComponent, BooleanFilterMenuComponent, FilterCellOperatorsComponent, FilterCellOperatorsComponent, i47.CustomMessagesComponent, i47.PagerInfoComponent, i47.PagerInputComponent, i47.PagerNextButtonsComponent, i47.PagerNumericButtonsComponent, i47.PagerPageSizesComponent, i47.PagerPrevButtonsComponent, i47.PagerComponent, i47.PagerSpacerComponent] });
|
21541
21528
|
}
|
21542
21529
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterMenuModule, decorators: [{
|
21543
21530
|
type: NgModule,
|
@@ -21573,7 +21560,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
21573
21560
|
class HeaderModule {
|
21574
21561
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: HeaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
21575
21562
|
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: HeaderModule, imports: [HeaderComponent, HeaderTemplateDirective, ColumnHandleDirective, FilterRowComponent, FilterCellComponent, FilterCellTemplateDirective, StringFilterCellComponent, NumericFilterCellComponent, AutoCompleteFilterCellComponent, BooleanFilterCellComponent, FilterCellHostDirective, FilterCellWrapperComponent, DateFilterCellComponent, FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, FilterInputDirective, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, ColGroupComponent, ResizableContainerDirective, i1$4.TemplateContextDirective, FieldAccessorPipe, SpanColumnComponent, LoadingComponent, FilterCellOperatorsComponent, CheckboxColumnComponent, RowReorderColumnComponent, i47.CustomMessagesComponent, i47.PagerFocusableDirective, i47.PagerInfoComponent, i47.PagerInputComponent, i47.PagerNextButtonsComponent, i47.PagerNumericButtonsComponent, i47.PagerPageSizesComponent, i47.PagerPrevButtonsComponent, i47.PagerTemplateDirective, i47.PagerComponent, i47.PagerSpacerComponent, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuInputWrapperComponent, StringFilterMenuInputComponent, StringFilterMenuComponent, FilterMenuTemplateDirective, NumericFilterMenuComponent, NumericFilterMenuInputComponent, DateFilterMenuInputComponent, DateFilterMenuComponent, FilterMenuHostDirective, BooleanFilterMenuComponent, BooleanFilterRadioButtonDirective, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, ColGroupComponent, ResizableContainerDirective, i1$4.TemplateContextDirective, FieldAccessorPipe, SpanColumnComponent, LoadingComponent, FilterCellOperatorsComponent, CheckboxColumnComponent, RowReorderColumnComponent, i47.CustomMessagesComponent, i47.PagerFocusableDirective, i47.PagerInfoComponent, i47.PagerInputComponent, i47.PagerNextButtonsComponent, i47.PagerNumericButtonsComponent, i47.PagerPageSizesComponent, i47.PagerPrevButtonsComponent, i47.PagerTemplateDirective, i47.PagerComponent, i47.PagerSpacerComponent, ColumnChooserComponent, ColumnMenuChooserComponent, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuItemContentTemplateDirective, ColumnMenuSortComponent, ColumnMenuComponent, ColumnMenuLockComponent, ColumnMenuTemplateDirective, DraggableColumnDirective, DropTargetDirective], exports: [HeaderComponent, HeaderTemplateDirective, ColumnHandleDirective] });
|
21576
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: HeaderModule, imports: [HeaderComponent, StringFilterCellComponent, NumericFilterCellComponent, AutoCompleteFilterCellComponent, BooleanFilterCellComponent, FilterCellWrapperComponent, DateFilterCellComponent, FilterCellOperatorsComponent, FilterCellOperatorsComponent, i47.CustomMessagesComponent, i47.PagerInfoComponent, i47.PagerInputComponent, i47.PagerNextButtonsComponent, i47.PagerNumericButtonsComponent, i47.PagerPageSizesComponent, i47.PagerPrevButtonsComponent, i47.PagerComponent, i47.PagerSpacerComponent, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuInputWrapperComponent, StringFilterMenuInputComponent, StringFilterMenuComponent, NumericFilterMenuComponent, NumericFilterMenuInputComponent, DateFilterMenuInputComponent, DateFilterMenuComponent, FilterCellOperatorsComponent, i47.CustomMessagesComponent, i47.PagerInfoComponent, i47.PagerInputComponent, i47.PagerNextButtonsComponent, i47.PagerNumericButtonsComponent, i47.PagerPageSizesComponent, i47.PagerPrevButtonsComponent, i47.PagerComponent, i47.PagerSpacerComponent, ColumnChooserComponent, ColumnMenuChooserComponent, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuSortComponent, ColumnMenuComponent, ColumnMenuLockComponent] });
|
21563
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: HeaderModule, imports: [HeaderComponent, StringFilterCellComponent, NumericFilterCellComponent, AutoCompleteFilterCellComponent, BooleanFilterCellComponent, FilterCellWrapperComponent, DateFilterCellComponent, FilterCellOperatorsComponent, FilterCellOperatorsComponent, i47.CustomMessagesComponent, i47.PagerInfoComponent, i47.PagerInputComponent, i47.PagerNextButtonsComponent, i47.PagerNumericButtonsComponent, i47.PagerPageSizesComponent, i47.PagerPrevButtonsComponent, i47.PagerComponent, i47.PagerSpacerComponent, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuInputWrapperComponent, StringFilterMenuInputComponent, StringFilterMenuComponent, NumericFilterMenuComponent, NumericFilterMenuInputComponent, DateFilterMenuInputComponent, DateFilterMenuComponent, BooleanFilterMenuComponent, FilterCellOperatorsComponent, i47.CustomMessagesComponent, i47.PagerInfoComponent, i47.PagerInputComponent, i47.PagerNextButtonsComponent, i47.PagerNumericButtonsComponent, i47.PagerPageSizesComponent, i47.PagerPrevButtonsComponent, i47.PagerComponent, i47.PagerSpacerComponent, ColumnChooserComponent, ColumnMenuChooserComponent, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuSortComponent, ColumnMenuComponent, ColumnMenuLockComponent] });
|
21577
21564
|
}
|
21578
21565
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: HeaderModule, decorators: [{
|
21579
21566
|
type: NgModule,
|