@progress/kendo-angular-treelist 14.0.0-develop.1 → 14.0.0-develop.11
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/common/single-popup.service.d.ts +1 -1
- package/esm2020/common/single-popup.service.mjs +1 -1
- package/esm2020/dragdrop/drag-hint.service.mjs +6 -6
- package/esm2020/filtering/cell/boolean-filter-cell.component.mjs +1 -1
- package/esm2020/filtering/cell/date-filter-cell.component.mjs +1 -1
- package/esm2020/filtering/cell/filter-cell-operators.component.mjs +10 -4
- package/esm2020/filtering/filter.service.mjs +1 -1
- package/esm2020/filtering/menu/date-filter-menu-input.component.mjs +1 -1
- package/esm2020/filtering/menu/date-filter-menu.component.mjs +1 -1
- package/esm2020/filtering/menu/filter-menu-input-wrapper.component.mjs +1 -1
- package/esm2020/filtering/menu/numeric-filter-menu.component.mjs +1 -1
- package/esm2020/filtering/menu/string-filter-menu.component.mjs +1 -1
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/pager/pager-page-sizes.component.mjs +1 -1
- package/esm2020/rendering/cell.component.mjs +10 -5
- package/esm2020/rendering/constants.mjs +1 -1
- package/esm2020/rendering/table-body.component.mjs +14 -8
- package/fesm2015/progress-kendo-angular-treelist.mjs +47 -31
- package/fesm2020/progress-kendo-angular-treelist.mjs +47 -31
- package/filtering/cell/filter-cell-operators.component.d.ts +4 -0
- package/filtering/filter.service.d.ts +1 -1
- package/package.json +16 -16
- package/rendering/cell.component.d.ts +1 -0
- package/rendering/constants.d.ts +1 -1
- package/rendering/table-body.component.d.ts +2 -0
- package/schematics/ngAdd/index.js +3 -3
- package/scrolling/scrollmode.d.ts +4 -3
|
@@ -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: '14.0.0-develop.
|
|
51
|
+
publishDate: 1696927568,
|
|
52
|
+
version: '14.0.0-develop.11',
|
|
53
53
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
54
54
|
};
|
|
55
55
|
|
|
@@ -2021,7 +2021,7 @@ const syncRowsHeight = (table1, table2) => {
|
|
|
2021
2021
|
|
|
2022
2022
|
/**
|
|
2023
2023
|
* Represents a service to set the filter descriptor
|
|
2024
|
-
* ([see example]({% slug
|
|
2024
|
+
* ([see example]({% slug filter_menu_treelist %})).
|
|
2025
2025
|
*/
|
|
2026
2026
|
class FilterService {
|
|
2027
2027
|
constructor() {
|
|
@@ -2826,7 +2826,7 @@ class PopupCloseEvent extends PreventableEvent {
|
|
|
2826
2826
|
const DEFAULT_POPUP_CLASS = 'k-grid-filter-popup';
|
|
2827
2827
|
/**
|
|
2828
2828
|
* The service that is used for the popups of the filter and column menus
|
|
2829
|
-
* ([see example]({% slug
|
|
2829
|
+
* ([see example]({% slug filter_menu_treelist %}#toc-filter-menu-with-popup)).
|
|
2830
2830
|
*/
|
|
2831
2831
|
class SinglePopupService {
|
|
2832
2832
|
/**
|
|
@@ -3028,7 +3028,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
3028
3028
|
}] });
|
|
3029
3029
|
|
|
3030
3030
|
const updateClass = (element, valid, svg) => {
|
|
3031
|
-
const icon = element.querySelector('.k-icon
|
|
3031
|
+
const icon = element.querySelector('.k-icon');
|
|
3032
3032
|
if (svg) {
|
|
3033
3033
|
const svg = icon.firstElementChild;
|
|
3034
3034
|
svg.removeChild(svg.firstElementChild);
|
|
@@ -3038,7 +3038,7 @@ const updateClass = (element, valid, svg) => {
|
|
|
3038
3038
|
icon.setAttribute('class', icon.getAttribute('class').replace(/(plus|cancel)/, valid ? 'plus' : 'cancel'));
|
|
3039
3039
|
};
|
|
3040
3040
|
const updateLock = (element, locked = null, svg) => {
|
|
3041
|
-
const icon = element.querySelectorAll('.k-icon
|
|
3041
|
+
const icon = element.querySelectorAll('.k-icon')[1];
|
|
3042
3042
|
const value = locked === null ? '' : (locked ? `k${svg ? '-svg' : ''}-i-lock` : `k${svg ? '-svg' : ''}-i-unlock`);
|
|
3043
3043
|
if (svg) {
|
|
3044
3044
|
icon.setAttribute('class', icon.getAttribute('class').replace(/(k-svg-i-unlock|k-svg-i-lock)/, '').trim() + ` ${value}`);
|
|
@@ -3054,7 +3054,7 @@ const decorate = (element) => {
|
|
|
3054
3054
|
element.style.zIndex = '20000';
|
|
3055
3055
|
};
|
|
3056
3056
|
const svgIconsMarkup = (viewBox, content, safeTitle) => `
|
|
3057
|
-
<span class="k-svg-icon k-drag-status k-svg-i-cancel">
|
|
3057
|
+
<span class="k-icon k-svg-icon k-drag-status k-svg-i-cancel">
|
|
3058
3058
|
<svg
|
|
3059
3059
|
xmlns="http://www.w3.org/2000/svg"
|
|
3060
3060
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
@@ -3062,7 +3062,7 @@ const svgIconsMarkup = (viewBox, content, safeTitle) => `
|
|
|
3062
3062
|
aria-hidden="true">
|
|
3063
3063
|
${content}
|
|
3064
3064
|
</svg>
|
|
3065
|
-
<span class="k-svg-icon k-icon-modifier">
|
|
3065
|
+
<span class="k-icon k-svg-icon k-icon-modifier">
|
|
3066
3066
|
<svg
|
|
3067
3067
|
xmlns="http://www.w3.org/2000/svg"
|
|
3068
3068
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
@@ -3073,8 +3073,8 @@ const svgIconsMarkup = (viewBox, content, safeTitle) => `
|
|
|
3073
3073
|
</span>
|
|
3074
3074
|
${safeTitle}`;
|
|
3075
3075
|
const fontIconsMarkup = (safeTitle) => `
|
|
3076
|
-
<span class="k-icon k-drag-status k-i-cancel">
|
|
3077
|
-
<span class="k-icon k-icon-modifier"></span>
|
|
3076
|
+
<span class="k-icon k-font-icon k-drag-status k-i-cancel">
|
|
3077
|
+
<span class="k-icon k-font-icon k-icon-modifier"></span>
|
|
3078
3078
|
</span>
|
|
3079
3079
|
${safeTitle}`;
|
|
3080
3080
|
/**
|
|
@@ -6300,7 +6300,7 @@ FilterMenuInputWrapperComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion:
|
|
|
6300
6300
|
valueField="value">
|
|
6301
6301
|
</kendo-dropdownlist>
|
|
6302
6302
|
<ng-content></ng-content>
|
|
6303
|
-
`, isInline: true, components: [{ type: i3$1.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["showStickyHeader", "
|
|
6303
|
+
`, isInline: true, components: [{ type: i3$1.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }] });
|
|
6304
6304
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: FilterMenuInputWrapperComponent, decorators: [{
|
|
6305
6305
|
type: Component,
|
|
6306
6306
|
args: [{
|
|
@@ -6470,7 +6470,7 @@ StringFilterMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
|
6470
6470
|
[column]="column"
|
|
6471
6471
|
[filter]="filter">
|
|
6472
6472
|
</kendo-treelist-string-filter-menu-input>
|
|
6473
|
-
`, isInline: true, components: [{ type: StringFilterMenuInputComponent, selector: "kendo-treelist-string-filter-menu-input", inputs: ["operators", "column", "filter", "operator", "currentFilter", "filterService"] }, { type: i3$1.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["showStickyHeader", "
|
|
6473
|
+
`, isInline: true, components: [{ type: StringFilterMenuInputComponent, selector: "kendo-treelist-string-filter-menu-input", inputs: ["operators", "column", "filter", "operator", "currentFilter", "filterService"] }, { type: i3$1.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
6474
6474
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StringFilterMenuComponent, decorators: [{
|
|
6475
6475
|
type: Component,
|
|
6476
6476
|
args: [{
|
|
@@ -6818,7 +6818,7 @@ NumericFilterMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
6818
6818
|
[step]="step"
|
|
6819
6819
|
>
|
|
6820
6820
|
</kendo-treelist-numeric-filter-menu-input>
|
|
6821
|
-
`, isInline: true, components: [{ type: NumericFilterMenuInputComponent, selector: "kendo-treelist-numeric-filter-menu-input", inputs: ["operators", "column", "filter", "operator", "currentFilter", "filterService", "step", "min", "max", "spinners", "decimals", "format"] }, { type: i3$1.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["showStickyHeader", "
|
|
6821
|
+
`, isInline: true, components: [{ type: NumericFilterMenuInputComponent, selector: "kendo-treelist-numeric-filter-menu-input", inputs: ["operators", "column", "filter", "operator", "currentFilter", "filterService", "step", "min", "max", "spinners", "decimals", "format"] }, { type: i3$1.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
6822
6822
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: NumericFilterMenuComponent, decorators: [{
|
|
6823
6823
|
type: Component,
|
|
6824
6824
|
args: [{
|
|
@@ -7058,7 +7058,7 @@ DateFilterMenuInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12
|
|
|
7058
7058
|
>
|
|
7059
7059
|
</kendo-datepicker>
|
|
7060
7060
|
</kendo-treelist-filter-menu-input-wrapper>
|
|
7061
|
-
`, 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"] }] });
|
|
7061
|
+
`, 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", "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"], exportAs: ["kendo-datepicker"] }], directives: [{ type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "column", "value"] }] });
|
|
7062
7062
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DateFilterMenuInputComponent, decorators: [{
|
|
7063
7063
|
type: Component,
|
|
7064
7064
|
args: [{
|
|
@@ -7222,7 +7222,7 @@ DateFilterMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
7222
7222
|
[weekNumber]="weekNumber"
|
|
7223
7223
|
>
|
|
7224
7224
|
</kendo-treelist-date-filter-menu-input>
|
|
7225
|
-
`, isInline: true, components: [{ type: DateFilterMenuInputComponent, selector: "kendo-treelist-date-filter-menu-input", inputs: ["operators", "column", "filter", "operator", "currentFilter", "filterService", "format", "formatPlaceholder", "placeholder", "min", "max", "activeView", "bottomView", "topView", "weekNumber"] }, { type: i3$1.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["showStickyHeader", "
|
|
7225
|
+
`, isInline: true, components: [{ type: DateFilterMenuInputComponent, selector: "kendo-treelist-date-filter-menu-input", inputs: ["operators", "column", "filter", "operator", "currentFilter", "filterService", "format", "formatPlaceholder", "placeholder", "min", "max", "activeView", "bottomView", "topView", "weekNumber"] }, { type: i3$1.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
7226
7226
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DateFilterMenuComponent, decorators: [{
|
|
7227
7227
|
type: Component,
|
|
7228
7228
|
args: [{
|
|
@@ -8840,6 +8840,10 @@ class FilterCellOperatorsComponent {
|
|
|
8840
8840
|
this.localization = localization;
|
|
8841
8841
|
this.clearText = 'Clear';
|
|
8842
8842
|
this.filterClearIcon = filterClearIcon;
|
|
8843
|
+
/**
|
|
8844
|
+
* @hidden
|
|
8845
|
+
*/
|
|
8846
|
+
this.filterSVGIcon = filterIcon;
|
|
8843
8847
|
/**
|
|
8844
8848
|
* The filter operators that will be displayed.
|
|
8845
8849
|
*/
|
|
@@ -8934,7 +8938,8 @@ FilterCellOperatorsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12
|
|
|
8934
8938
|
(valueChange)="onChange($event)"
|
|
8935
8939
|
[value]="value"
|
|
8936
8940
|
[attr.aria-label]="column && columnLabel"
|
|
8937
|
-
|
|
8941
|
+
icon="filter"
|
|
8942
|
+
[svgIcon]="filterSVGIcon"
|
|
8938
8943
|
[valuePrimitive]="true"
|
|
8939
8944
|
textField="text"
|
|
8940
8945
|
[popupSettings]="{ width: 'auto' }"
|
|
@@ -8951,7 +8956,7 @@ FilterCellOperatorsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12
|
|
|
8951
8956
|
(click)="clearClick()"
|
|
8952
8957
|
(keydown)="clearKeydown($event)">
|
|
8953
8958
|
</button>
|
|
8954
|
-
`, isInline: true, components: [{ type: i3$1.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["showStickyHeader", "
|
|
8959
|
+
`, isInline: true, components: [{ type: i3$1.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { type: i4$2.ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "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"] }] });
|
|
8955
8960
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: FilterCellOperatorsComponent, decorators: [{
|
|
8956
8961
|
type: Component,
|
|
8957
8962
|
args: [{
|
|
@@ -8966,7 +8971,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
8966
8971
|
(valueChange)="onChange($event)"
|
|
8967
8972
|
[value]="value"
|
|
8968
8973
|
[attr.aria-label]="column && columnLabel"
|
|
8969
|
-
|
|
8974
|
+
icon="filter"
|
|
8975
|
+
[svgIcon]="filterSVGIcon"
|
|
8970
8976
|
[valuePrimitive]="true"
|
|
8971
8977
|
textField="text"
|
|
8972
8978
|
[popupSettings]="{ width: 'auto' }"
|
|
@@ -9315,7 +9321,7 @@ BooleanFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
9315
9321
|
[value]="currentFilter?.value">
|
|
9316
9322
|
</kendo-dropdownlist>
|
|
9317
9323
|
</kendo-treelist-filter-wrapper-cell>
|
|
9318
|
-
`, isInline: true, components: [{ type: FilterCellWrapperComponent, selector: "kendo-treelist-filter-wrapper-cell", inputs: ["showOperators"] }, { type: i3$1.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["showStickyHeader", "
|
|
9324
|
+
`, isInline: true, components: [{ type: FilterCellWrapperComponent, selector: "kendo-treelist-filter-wrapper-cell", inputs: ["showOperators"] }, { type: i3$1.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }], directives: [{ type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "column", "value"] }] });
|
|
9319
9325
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BooleanFilterCellComponent, decorators: [{
|
|
9320
9326
|
type: Component,
|
|
9321
9327
|
args: [{
|
|
@@ -9403,7 +9409,7 @@ DateFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
9403
9409
|
>
|
|
9404
9410
|
</kendo-datepicker>
|
|
9405
9411
|
</kendo-treelist-filter-wrapper-cell>
|
|
9406
|
-
`, 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"] }] });
|
|
9412
|
+
`, 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", "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"], exportAs: ["kendo-datepicker"] }], directives: [{ type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "column", "value"] }] });
|
|
9407
9413
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DateFilterCellComponent, decorators: [{
|
|
9408
9414
|
type: Component,
|
|
9409
9415
|
args: [{
|
|
@@ -11073,7 +11079,7 @@ const NON_DATA_ROW_CLASSES = 'k-grouping-row k-group-footer k-detail-row k-grid-
|
|
|
11073
11079
|
/**
|
|
11074
11080
|
* @hidden
|
|
11075
11081
|
*/
|
|
11076
|
-
const EMPTY_ICON_CLASS = 'k-i-none';
|
|
11082
|
+
const EMPTY_ICON_CLASS = 'k-i-none k-svg-i-none';
|
|
11077
11083
|
/**
|
|
11078
11084
|
* @hidden
|
|
11079
11085
|
*/
|
|
@@ -11162,6 +11168,11 @@ class CellComponent {
|
|
|
11162
11168
|
this.caretAltRightIcon = caretAltRightIcon;
|
|
11163
11169
|
this.caretAltLeftIcon = caretAltLeftIcon;
|
|
11164
11170
|
this.reorderIcon = reorderIcon;
|
|
11171
|
+
this.noneIcon = {
|
|
11172
|
+
name: 'none',
|
|
11173
|
+
content: '',
|
|
11174
|
+
viewBox: '0 0 24 24'
|
|
11175
|
+
};
|
|
11165
11176
|
this.cellContext = {};
|
|
11166
11177
|
this._templateContext = {};
|
|
11167
11178
|
this._editTemplateContext = {};
|
|
@@ -11274,8 +11285,8 @@ CellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
|
|
|
11274
11285
|
<ng-container [ngSwitch]="isEdited">
|
|
11275
11286
|
<ng-container *ngSwitchCase="false">
|
|
11276
11287
|
<ng-container *ngIf="column.expandable">
|
|
11277
|
-
<
|
|
11278
|
-
<kendo-icon-wrapper
|
|
11288
|
+
<kendo-icon-wrapper name="none" innerCssClass="k-treelist-toggle" [svgIcon]="noneIcon" *ngFor="let item of level | levelItems : hasChildren && expandIcons"></kendo-icon-wrapper>
|
|
11289
|
+
<kendo-icon-wrapper innerCssClass="k-treelist-toggle"
|
|
11279
11290
|
aria-hidden="true"
|
|
11280
11291
|
*ngIf="hasChildren && expandIcons && !loading"
|
|
11281
11292
|
[name]="arrowIcon"
|
|
@@ -11346,7 +11357,7 @@ CellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
|
|
|
11346
11357
|
</ng-container>
|
|
11347
11358
|
</ng-container>
|
|
11348
11359
|
</ng-container>
|
|
11349
|
-
`, 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 } });
|
|
11360
|
+
`, 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", "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"], 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 } });
|
|
11350
11361
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: CellComponent, decorators: [{
|
|
11351
11362
|
type: Component,
|
|
11352
11363
|
args: [{
|
|
@@ -11355,8 +11366,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
11355
11366
|
<ng-container [ngSwitch]="isEdited">
|
|
11356
11367
|
<ng-container *ngSwitchCase="false">
|
|
11357
11368
|
<ng-container *ngIf="column.expandable">
|
|
11358
|
-
<
|
|
11359
|
-
<kendo-icon-wrapper
|
|
11369
|
+
<kendo-icon-wrapper name="none" innerCssClass="k-treelist-toggle" [svgIcon]="noneIcon" *ngFor="let item of level | levelItems : hasChildren && expandIcons"></kendo-icon-wrapper>
|
|
11370
|
+
<kendo-icon-wrapper innerCssClass="k-treelist-toggle"
|
|
11360
11371
|
aria-hidden="true"
|
|
11361
11372
|
*ngIf="hasChildren && expandIcons && !loading"
|
|
11362
11373
|
[name]="arrowIcon"
|
|
@@ -11502,6 +11513,11 @@ class TableBodyComponent {
|
|
|
11502
11513
|
this.lockedColumnsCount = 0;
|
|
11503
11514
|
this.totalColumnsCount = 0;
|
|
11504
11515
|
this.trackBy = defaultTrackBy;
|
|
11516
|
+
this.noneIcon = {
|
|
11517
|
+
name: 'none',
|
|
11518
|
+
content: '',
|
|
11519
|
+
viewBox: '0 0 24 24'
|
|
11520
|
+
};
|
|
11505
11521
|
this.rowClass = () => null;
|
|
11506
11522
|
this.cellKeydownSubscription = this.navigationService.cellKeydown.subscribe((args) => this.cellKeydownHandler(args));
|
|
11507
11523
|
this.trackByWrapper = this.trackByWrapper.bind(this);
|
|
@@ -11746,7 +11762,7 @@ class TableBodyComponent {
|
|
|
11746
11762
|
return {};
|
|
11747
11763
|
}
|
|
11748
11764
|
expandClick(eventArg, row) {
|
|
11749
|
-
if (eventArg.type === 'click' && eventArg.target.closest('.k-icon-wrapper-host')) {
|
|
11765
|
+
if (eventArg.type === 'click' && !hasClasses(eventArg.target, EMPTY_ICON_CLASS) && eventArg.target.closest('.k-icon-wrapper-host')) {
|
|
11750
11766
|
eventArg.preventDefault();
|
|
11751
11767
|
const viewItem = this.rowItem(row);
|
|
11752
11768
|
if (viewItem.type === 'data') {
|
|
@@ -11858,7 +11874,7 @@ TableBodyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
11858
11874
|
[ngStyle]="column.footerStyle"
|
|
11859
11875
|
*ngFor="let column of footerColumns; let columnIndex = index; trackBy: trackByColumns;">
|
|
11860
11876
|
<ng-container *ngIf="$any(column).expandable">
|
|
11861
|
-
<
|
|
11877
|
+
<kendo-icon-wrapper name="none" innerCssClass="k-treelist-toggle" [svgIcon]="noneIcon" *ngFor="let item of item.level | levelItems"></kendo-icon-wrapper>
|
|
11862
11878
|
</ng-container>
|
|
11863
11879
|
<ng-container [ngTemplateOutlet]="column.footerTemplateRef"
|
|
11864
11880
|
[ngTemplateOutletContext]="{
|
|
@@ -11874,7 +11890,7 @@ TableBodyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
11874
11890
|
</td>
|
|
11875
11891
|
</tr>
|
|
11876
11892
|
</ng-container>
|
|
11877
|
-
`, isInline: true, components: [{ type: CellComponent, selector: "[kendoTreeListCell]", inputs: ["column", "columnIndex", "isNew", "level", "hasChildren", "isExpanded", "loading", "expandIcons", "selected", "dataItem", "viewItem"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: LogicalRowDirective, selector: "[kendoTreeListLogicalRow]", inputs: ["logicalRowIndex", "logicalSlaveRow", "logicalCellsCount", "logicalSlaveCellsCount", "dataRowIndex", "dataItem", "isNew", "totalColumns"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: LogicalCellDirective, selector: "[kendoTreeListLogicalCell]", inputs: ["logicalColIndex", "logicalRowIndex", "logicalSlaveCell", "column", "colIndex", "colSpan", "rowSpan", "dataRowIndex", "dataItem", "expandable"] }, { type: i4.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }], pipes: { "levelItems": LevelItemsPipe } });
|
|
11893
|
+
`, isInline: true, components: [{ type: CellComponent, selector: "[kendoTreeListCell]", inputs: ["column", "columnIndex", "isNew", "level", "hasChildren", "isExpanded", "loading", "expandIcons", "selected", "dataItem", "viewItem"] }, { type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: LogicalRowDirective, selector: "[kendoTreeListLogicalRow]", inputs: ["logicalRowIndex", "logicalSlaveRow", "logicalCellsCount", "logicalSlaveCellsCount", "dataRowIndex", "dataItem", "isNew", "totalColumns"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: LogicalCellDirective, selector: "[kendoTreeListLogicalCell]", inputs: ["logicalColIndex", "logicalRowIndex", "logicalSlaveCell", "column", "colIndex", "colSpan", "rowSpan", "dataRowIndex", "dataItem", "expandable"] }, { type: i4.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }], pipes: { "levelItems": LevelItemsPipe } });
|
|
11878
11894
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TableBodyComponent, decorators: [{
|
|
11879
11895
|
type: Component,
|
|
11880
11896
|
args: [{
|
|
@@ -11961,7 +11977,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
11961
11977
|
[ngStyle]="column.footerStyle"
|
|
11962
11978
|
*ngFor="let column of footerColumns; let columnIndex = index; trackBy: trackByColumns;">
|
|
11963
11979
|
<ng-container *ngIf="$any(column).expandable">
|
|
11964
|
-
<
|
|
11980
|
+
<kendo-icon-wrapper name="none" innerCssClass="k-treelist-toggle" [svgIcon]="noneIcon" *ngFor="let item of item.level | levelItems"></kendo-icon-wrapper>
|
|
11965
11981
|
</ng-container>
|
|
11966
11982
|
<ng-container [ngTemplateOutlet]="column.footerTemplateRef"
|
|
11967
11983
|
[ngTemplateOutletContext]="{
|
|
@@ -13191,7 +13207,7 @@ PagerPageSizesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
13191
13207
|
[attr.aria-label]="textFor('pagerItemsPerPage')"
|
|
13192
13208
|
(valueChange)="pageSizeChange($event)"></kendo-dropdownlist>
|
|
13193
13209
|
<kendo-label [for]="dropdownlist" [text]="textFor('pagerItemsPerPage')"></kendo-label>
|
|
13194
|
-
`, isInline: true, components: [{ type: i3$1.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["showStickyHeader", "
|
|
13210
|
+
`, isInline: true, components: [{ type: i3$1.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { 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 });
|
|
13195
13211
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PagerPageSizesComponent, decorators: [{
|
|
13196
13212
|
type: Component,
|
|
13197
13213
|
args: [{
|
|
@@ -29,6 +29,10 @@ export declare class FilterCellOperatorsComponent implements OnInit, OnDestroy {
|
|
|
29
29
|
protected localization: LocalizationService;
|
|
30
30
|
clearText: string;
|
|
31
31
|
filterClearIcon: SVGIcon;
|
|
32
|
+
/**
|
|
33
|
+
* @hidden
|
|
34
|
+
*/
|
|
35
|
+
filterSVGIcon: SVGIcon;
|
|
32
36
|
/**
|
|
33
37
|
* @hidden
|
|
34
38
|
*/
|
|
@@ -7,7 +7,7 @@ import { CompositeFilterDescriptor } from '@progress/kendo-data-query';
|
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
/**
|
|
9
9
|
* Represents a service to set the filter descriptor
|
|
10
|
-
* ([see example]({% slug
|
|
10
|
+
* ([see example]({% slug filter_menu_treelist %})).
|
|
11
11
|
*/
|
|
12
12
|
export declare class FilterService {
|
|
13
13
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-treelist",
|
|
3
|
-
"version": "14.0.0-develop.
|
|
3
|
+
"version": "14.0.0-develop.11",
|
|
4
4
|
"description": "Kendo UI TreeList for Angular - Display hierarchical data in an Angular tree grid view that supports sorting, filtering, paging, and much more.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -30,25 +30,25 @@
|
|
|
30
30
|
"@progress/kendo-data-query": "^1.0.0",
|
|
31
31
|
"@progress/kendo-drawing": "^1.17.2",
|
|
32
32
|
"@progress/kendo-licensing": "^1.0.2",
|
|
33
|
-
"@progress/kendo-angular-buttons": "14.0.0-develop.
|
|
34
|
-
"@progress/kendo-angular-common": "14.0.0-develop.
|
|
35
|
-
"@progress/kendo-angular-dateinputs": "14.0.0-develop.
|
|
36
|
-
"@progress/kendo-angular-dropdowns": "14.0.0-develop.
|
|
37
|
-
"@progress/kendo-angular-excel-export": "14.0.0-develop.
|
|
38
|
-
"@progress/kendo-angular-icons": "14.0.0-develop.
|
|
39
|
-
"@progress/kendo-angular-inputs": "14.0.0-develop.
|
|
40
|
-
"@progress/kendo-angular-intl": "14.0.0-develop.
|
|
41
|
-
"@progress/kendo-angular-l10n": "14.0.0-develop.
|
|
42
|
-
"@progress/kendo-angular-label": "14.0.0-develop.
|
|
43
|
-
"@progress/kendo-angular-pdf-export": "14.0.0-develop.
|
|
44
|
-
"@progress/kendo-angular-popup": "14.0.0-develop.
|
|
45
|
-
"@progress/kendo-angular-utils": "14.0.0-develop.
|
|
33
|
+
"@progress/kendo-angular-buttons": "14.0.0-develop.11",
|
|
34
|
+
"@progress/kendo-angular-common": "14.0.0-develop.11",
|
|
35
|
+
"@progress/kendo-angular-dateinputs": "14.0.0-develop.11",
|
|
36
|
+
"@progress/kendo-angular-dropdowns": "14.0.0-develop.11",
|
|
37
|
+
"@progress/kendo-angular-excel-export": "14.0.0-develop.11",
|
|
38
|
+
"@progress/kendo-angular-icons": "14.0.0-develop.11",
|
|
39
|
+
"@progress/kendo-angular-inputs": "14.0.0-develop.11",
|
|
40
|
+
"@progress/kendo-angular-intl": "14.0.0-develop.11",
|
|
41
|
+
"@progress/kendo-angular-l10n": "14.0.0-develop.11",
|
|
42
|
+
"@progress/kendo-angular-label": "14.0.0-develop.11",
|
|
43
|
+
"@progress/kendo-angular-pdf-export": "14.0.0-develop.11",
|
|
44
|
+
"@progress/kendo-angular-popup": "14.0.0-develop.11",
|
|
45
|
+
"@progress/kendo-angular-utils": "14.0.0-develop.11",
|
|
46
46
|
"rxjs": "^6.5.3 || ^7.0.0",
|
|
47
|
-
"@progress/kendo-angular-listview": "14.0.0-develop.
|
|
47
|
+
"@progress/kendo-angular-listview": "14.0.0-develop.11"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"tslib": "^2.3.1",
|
|
51
|
-
"@progress/kendo-angular-schematics": "14.0.0-develop.
|
|
51
|
+
"@progress/kendo-angular-schematics": "14.0.0-develop.11",
|
|
52
52
|
"@progress/kendo-common": "^0.2.0",
|
|
53
53
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
54
54
|
},
|
|
@@ -46,6 +46,7 @@ export declare class CellComponent implements AfterContentChecked, DoCheck {
|
|
|
46
46
|
caretAltRightIcon: SVGIcon;
|
|
47
47
|
caretAltLeftIcon: SVGIcon;
|
|
48
48
|
reorderIcon: SVGIcon;
|
|
49
|
+
noneIcon: SVGIcon;
|
|
49
50
|
cellContext: any;
|
|
50
51
|
private _templateContext;
|
|
51
52
|
private _editTemplateContext;
|
package/rendering/constants.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ import { TreeListItem } from '../data/treelist-item.interface';
|
|
|
17
17
|
import { ExpandStateService } from '../expand-state/expand-state.service';
|
|
18
18
|
import { SelectionService } from '../selection/selection.service';
|
|
19
19
|
import { ColumnsContainer } from '../columns/columns-container';
|
|
20
|
+
import { SVGIcon } from '@progress/kendo-angular-icons';
|
|
20
21
|
import * as i0 from "@angular/core";
|
|
21
22
|
/**
|
|
22
23
|
* @hidden
|
|
@@ -48,6 +49,7 @@ export declare class TableBodyComponent implements OnInit, OnDestroy, OnChanges
|
|
|
48
49
|
expandIcons: boolean;
|
|
49
50
|
trackBy: TrackByFunction<TreeListItem>;
|
|
50
51
|
totalColumns: ColumnsContainer;
|
|
52
|
+
noneIcon: SVGIcon;
|
|
51
53
|
private clickSubscription;
|
|
52
54
|
private l10nSubscription;
|
|
53
55
|
private cellKeydownSubscription;
|
|
@@ -4,13 +4,13 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
4
4
|
function default_1(options) {
|
|
5
5
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'TreeListModule', package: 'treelist', peerDependencies: {
|
|
6
6
|
// peer dep of the dropdowns
|
|
7
|
-
'@progress/kendo-angular-treeview': '14.0.0-develop.
|
|
7
|
+
'@progress/kendo-angular-treeview': '14.0.0-develop.11',
|
|
8
8
|
// peer dependency of kendo-angular-inputs
|
|
9
|
-
'@progress/kendo-angular-dialog': '14.0.0-develop.
|
|
9
|
+
'@progress/kendo-angular-dialog': '14.0.0-develop.11',
|
|
10
10
|
// peer dependency of kendo-angular-icons
|
|
11
11
|
'@progress/kendo-svg-icons': '^1.0.0',
|
|
12
12
|
// peer dependency of kendo-angular-dateinputs
|
|
13
|
-
'@progress/kendo-angular-navigation': '14.0.0-develop.
|
|
13
|
+
'@progress/kendo-angular-navigation': '14.0.0-develop.11',
|
|
14
14
|
} });
|
|
15
15
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
16
16
|
}
|
|
@@ -6,11 +6,12 @@
|
|
|
6
6
|
* The scroll mode of the TreeList.
|
|
7
7
|
*
|
|
8
8
|
* The available values are:
|
|
9
|
-
*
|
|
10
|
-
*
|
|
9
|
+
* * `none`—Scrollbars are hidden. The TreeList cannot be scrolled.
|
|
10
|
+
* * `scrollable`—Displays scrollbars in TreeList.
|
|
11
|
+
* * `virtual`—Enables the [virtual scroll mode](slug:virtualscrolling_treelist) of the TreeList.
|
|
11
12
|
*
|
|
12
13
|
* @example
|
|
13
|
-
* ```html
|
|
14
|
+
* ```html
|
|
14
15
|
* <kendo-treelist scrollable="scrollable"></kendo-treelist>
|
|
15
16
|
* ```
|
|
16
17
|
*/
|