@progress/kendo-angular-treelist 14.0.0-develop.2 → 14.0.0-develop.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/dragdrop/drag-hint.service.mjs +6 -6
- package/esm2020/filtering/cell/boolean-filter-cell.component.mjs +1 -1
- package/esm2020/filtering/cell/filter-cell-operators.component.mjs +10 -4
- 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 +9 -4
- package/esm2020/rendering/constants.mjs +1 -1
- package/esm2020/rendering/table-body.component.mjs +14 -8
- package/fesm2015/progress-kendo-angular-treelist.mjs +42 -26
- package/fesm2020/progress-kendo-angular-treelist.mjs +42 -26
- package/filtering/cell/filter-cell-operators.component.d.ts +4 -0
- 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
|
@@ -12,7 +12,7 @@ import * as i0 from "@angular/core";
|
|
|
12
12
|
import * as i1 from "@angular/platform-browser";
|
|
13
13
|
import * as i2 from "@progress/kendo-angular-icons";
|
|
14
14
|
const updateClass = (element, valid, svg) => {
|
|
15
|
-
const icon = element.querySelector('.k-icon
|
|
15
|
+
const icon = element.querySelector('.k-icon');
|
|
16
16
|
if (svg) {
|
|
17
17
|
const svg = icon.firstElementChild;
|
|
18
18
|
svg.removeChild(svg.firstElementChild);
|
|
@@ -22,7 +22,7 @@ const updateClass = (element, valid, svg) => {
|
|
|
22
22
|
icon.setAttribute('class', icon.getAttribute('class').replace(/(plus|cancel)/, valid ? 'plus' : 'cancel'));
|
|
23
23
|
};
|
|
24
24
|
const updateLock = (element, locked = null, svg) => {
|
|
25
|
-
const icon = element.querySelectorAll('.k-icon
|
|
25
|
+
const icon = element.querySelectorAll('.k-icon')[1];
|
|
26
26
|
const value = locked === null ? '' : (locked ? `k${svg ? '-svg' : ''}-i-lock` : `k${svg ? '-svg' : ''}-i-unlock`);
|
|
27
27
|
if (svg) {
|
|
28
28
|
icon.setAttribute('class', icon.getAttribute('class').replace(/(k-svg-i-unlock|k-svg-i-lock)/, '').trim() + ` ${value}`);
|
|
@@ -38,7 +38,7 @@ const decorate = (element) => {
|
|
|
38
38
|
element.style.zIndex = '20000';
|
|
39
39
|
};
|
|
40
40
|
const svgIconsMarkup = (viewBox, content, safeTitle) => `
|
|
41
|
-
<span class="k-svg-icon k-drag-status k-svg-i-cancel">
|
|
41
|
+
<span class="k-icon k-svg-icon k-drag-status k-svg-i-cancel">
|
|
42
42
|
<svg
|
|
43
43
|
xmlns="http://www.w3.org/2000/svg"
|
|
44
44
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
@@ -46,7 +46,7 @@ const svgIconsMarkup = (viewBox, content, safeTitle) => `
|
|
|
46
46
|
aria-hidden="true">
|
|
47
47
|
${content}
|
|
48
48
|
</svg>
|
|
49
|
-
<span class="k-svg-icon k-icon-modifier">
|
|
49
|
+
<span class="k-icon k-svg-icon k-icon-modifier">
|
|
50
50
|
<svg
|
|
51
51
|
xmlns="http://www.w3.org/2000/svg"
|
|
52
52
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
@@ -57,8 +57,8 @@ const svgIconsMarkup = (viewBox, content, safeTitle) => `
|
|
|
57
57
|
</span>
|
|
58
58
|
${safeTitle}`;
|
|
59
59
|
const fontIconsMarkup = (safeTitle) => `
|
|
60
|
-
<span class="k-icon k-drag-status k-i-cancel">
|
|
61
|
-
<span class="k-icon k-icon-modifier"></span>
|
|
60
|
+
<span class="k-icon k-font-icon k-drag-status k-i-cancel">
|
|
61
|
+
<span class="k-icon k-font-icon k-icon-modifier"></span>
|
|
62
62
|
</span>
|
|
63
63
|
${safeTitle}`;
|
|
64
64
|
/**
|
|
@@ -72,7 +72,7 @@ BooleanFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
72
72
|
[value]="currentFilter?.value">
|
|
73
73
|
</kendo-dropdownlist>
|
|
74
74
|
</kendo-treelist-filter-wrapper-cell>
|
|
75
|
-
`, isInline: true, components: [{ type: i3.FilterCellWrapperComponent, selector: "kendo-treelist-filter-wrapper-cell", inputs: ["showOperators"] }, { type: i4.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["showStickyHeader", "
|
|
75
|
+
`, isInline: true, components: [{ type: i3.FilterCellWrapperComponent, selector: "kendo-treelist-filter-wrapper-cell", inputs: ["showOperators"] }, { type: i4.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: i5.FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "column", "value"] }] });
|
|
76
76
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BooleanFilterCellComponent, decorators: [{
|
|
77
77
|
type: Component,
|
|
78
78
|
args: [{
|
|
@@ -6,7 +6,7 @@ import { Component, EventEmitter, HostBinding, Input, Output, ViewChild } from '
|
|
|
6
6
|
import { Keys } from '@progress/kendo-angular-common';
|
|
7
7
|
import { DropDownListComponent } from '@progress/kendo-angular-dropdowns';
|
|
8
8
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
9
|
-
import { filterClearIcon } from '@progress/kendo-svg-icons';
|
|
9
|
+
import { filterClearIcon, filterIcon } from '@progress/kendo-svg-icons';
|
|
10
10
|
import { replaceMessagePlaceholder } from '../../utils';
|
|
11
11
|
import { ColumnComponent } from '../../columns/column.component';
|
|
12
12
|
import * as i0 from "@angular/core";
|
|
@@ -37,6 +37,10 @@ export class FilterCellOperatorsComponent {
|
|
|
37
37
|
this.localization = localization;
|
|
38
38
|
this.clearText = 'Clear';
|
|
39
39
|
this.filterClearIcon = filterClearIcon;
|
|
40
|
+
/**
|
|
41
|
+
* @hidden
|
|
42
|
+
*/
|
|
43
|
+
this.filterSVGIcon = filterIcon;
|
|
40
44
|
/**
|
|
41
45
|
* The filter operators that will be displayed.
|
|
42
46
|
*/
|
|
@@ -131,7 +135,8 @@ FilterCellOperatorsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12
|
|
|
131
135
|
(valueChange)="onChange($event)"
|
|
132
136
|
[value]="value"
|
|
133
137
|
[attr.aria-label]="column && columnLabel"
|
|
134
|
-
|
|
138
|
+
icon="filter"
|
|
139
|
+
[svgIcon]="filterSVGIcon"
|
|
135
140
|
[valuePrimitive]="true"
|
|
136
141
|
textField="text"
|
|
137
142
|
[popupSettings]="{ width: 'auto' }"
|
|
@@ -148,7 +153,7 @@ FilterCellOperatorsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12
|
|
|
148
153
|
(click)="clearClick()"
|
|
149
154
|
(keydown)="clearKeydown($event)">
|
|
150
155
|
</button>
|
|
151
|
-
`, isInline: true, components: [{ type: i2.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["showStickyHeader", "
|
|
156
|
+
`, isInline: true, components: [{ type: i2.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: i3.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: i5.FocusableDirective, selector: "[kendoTreeListFocusable],\n [kendoTreeListAddCommand],\n [kendoTreeListEditCommand],\n [kendoTreeListRemoveCommand],\n [kendoTreeListSaveCommand],\n [kendoTreeListCancelCommand]\n ", inputs: ["kendoTreeListFocusable", "enabled", "kendoTreeListAddCommand", "kendoTreeListEditCommand", "kendoTreeListRemoveCommand", "kendoTreeListSaveCommand", "kendoTreeListCancelCommand"] }] });
|
|
152
157
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: FilterCellOperatorsComponent, decorators: [{
|
|
153
158
|
type: Component,
|
|
154
159
|
args: [{
|
|
@@ -163,7 +168,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
163
168
|
(valueChange)="onChange($event)"
|
|
164
169
|
[value]="value"
|
|
165
170
|
[attr.aria-label]="column && columnLabel"
|
|
166
|
-
|
|
171
|
+
icon="filter"
|
|
172
|
+
[svgIcon]="filterSVGIcon"
|
|
167
173
|
[valuePrimitive]="true"
|
|
168
174
|
textField="text"
|
|
169
175
|
[popupSettings]="{ width: 'auto' }"
|
|
@@ -111,7 +111,7 @@ DateFilterMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
111
111
|
[weekNumber]="weekNumber"
|
|
112
112
|
>
|
|
113
113
|
</kendo-treelist-date-filter-menu-input>
|
|
114
|
-
`, isInline: true, components: [{ type: i2.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.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["showStickyHeader", "
|
|
114
|
+
`, isInline: true, components: [{ type: i2.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.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"] }] });
|
|
115
115
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DateFilterMenuComponent, decorators: [{
|
|
116
116
|
type: Component,
|
|
117
117
|
args: [{
|
|
@@ -65,7 +65,7 @@ FilterMenuInputWrapperComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion:
|
|
|
65
65
|
valueField="value">
|
|
66
66
|
</kendo-dropdownlist>
|
|
67
67
|
<ng-content></ng-content>
|
|
68
|
-
`, isInline: true, components: [{ type: i1.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["showStickyHeader", "
|
|
68
|
+
`, isInline: true, components: [{ type: i1.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"] }] });
|
|
69
69
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: FilterMenuInputWrapperComponent, decorators: [{
|
|
70
70
|
type: Component,
|
|
71
71
|
args: [{
|
|
@@ -105,7 +105,7 @@ NumericFilterMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
105
105
|
[step]="step"
|
|
106
106
|
>
|
|
107
107
|
</kendo-treelist-numeric-filter-menu-input>
|
|
108
|
-
`, isInline: true, components: [{ type: i2.NumericFilterMenuInputComponent, selector: "kendo-treelist-numeric-filter-menu-input", inputs: ["operators", "column", "filter", "operator", "currentFilter", "filterService", "step", "min", "max", "spinners", "decimals", "format"] }, { type: i3.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["showStickyHeader", "
|
|
108
|
+
`, isInline: true, components: [{ type: i2.NumericFilterMenuInputComponent, selector: "kendo-treelist-numeric-filter-menu-input", inputs: ["operators", "column", "filter", "operator", "currentFilter", "filterService", "step", "min", "max", "spinners", "decimals", "format"] }, { type: i3.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"] }] });
|
|
109
109
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: NumericFilterMenuComponent, decorators: [{
|
|
110
110
|
type: Component,
|
|
111
111
|
args: [{
|
|
@@ -92,7 +92,7 @@ StringFilterMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
|
92
92
|
[column]="column"
|
|
93
93
|
[filter]="filter">
|
|
94
94
|
</kendo-treelist-string-filter-menu-input>
|
|
95
|
-
`, isInline: true, components: [{ type: i2.StringFilterMenuInputComponent, selector: "kendo-treelist-string-filter-menu-input", inputs: ["operators", "column", "filter", "operator", "currentFilter", "filterService"] }, { type: i3.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["showStickyHeader", "
|
|
95
|
+
`, isInline: true, components: [{ type: i2.StringFilterMenuInputComponent, selector: "kendo-treelist-string-filter-menu-input", inputs: ["operators", "column", "filter", "operator", "currentFilter", "filterService"] }, { type: i3.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"] }] });
|
|
96
96
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StringFilterMenuComponent, decorators: [{
|
|
97
97
|
type: Component,
|
|
98
98
|
args: [{
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-treelist',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '14.0.0-develop.
|
|
12
|
+
publishDate: 1696225160,
|
|
13
|
+
version: '14.0.0-develop.4',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -105,7 +105,7 @@ PagerPageSizesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
105
105
|
[attr.aria-label]="textFor('pagerItemsPerPage')"
|
|
106
106
|
(valueChange)="pageSizeChange($event)"></kendo-dropdownlist>
|
|
107
107
|
<kendo-label [for]="dropdownlist" [text]="textFor('pagerItemsPerPage')"></kendo-label>
|
|
108
|
-
`, isInline: true, components: [{ type: i3.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["showStickyHeader", "
|
|
108
|
+
`, isInline: true, components: [{ type: i3.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.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }], directives: [{ type: i5.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 });
|
|
109
109
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PagerPageSizesComponent, decorators: [{
|
|
110
110
|
type: Component,
|
|
111
111
|
args: [{
|
|
@@ -37,6 +37,11 @@ export class CellComponent {
|
|
|
37
37
|
this.caretAltRightIcon = caretAltRightIcon;
|
|
38
38
|
this.caretAltLeftIcon = caretAltLeftIcon;
|
|
39
39
|
this.reorderIcon = reorderIcon;
|
|
40
|
+
this.noneIcon = {
|
|
41
|
+
name: 'none',
|
|
42
|
+
content: '',
|
|
43
|
+
viewBox: '0 0 24 24'
|
|
44
|
+
};
|
|
40
45
|
this.cellContext = {};
|
|
41
46
|
this._templateContext = {};
|
|
42
47
|
this._editTemplateContext = {};
|
|
@@ -149,8 +154,8 @@ CellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
|
|
|
149
154
|
<ng-container [ngSwitch]="isEdited">
|
|
150
155
|
<ng-container *ngSwitchCase="false">
|
|
151
156
|
<ng-container *ngIf="column.expandable">
|
|
152
|
-
<
|
|
153
|
-
<kendo-icon-wrapper
|
|
157
|
+
<kendo-icon-wrapper name="none" innerCssClass="k-treelist-toggle" [svgIcon]="noneIcon" *ngFor="let item of level | levelItems : hasChildren && expandIcons"></kendo-icon-wrapper>
|
|
158
|
+
<kendo-icon-wrapper innerCssClass="k-treelist-toggle"
|
|
154
159
|
aria-hidden="true"
|
|
155
160
|
*ngIf="hasChildren && expandIcons && !loading"
|
|
156
161
|
[name]="arrowIcon"
|
|
@@ -230,8 +235,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
230
235
|
<ng-container [ngSwitch]="isEdited">
|
|
231
236
|
<ng-container *ngSwitchCase="false">
|
|
232
237
|
<ng-container *ngIf="column.expandable">
|
|
233
|
-
<
|
|
234
|
-
<kendo-icon-wrapper
|
|
238
|
+
<kendo-icon-wrapper name="none" innerCssClass="k-treelist-toggle" [svgIcon]="noneIcon" *ngFor="let item of level | levelItems : hasChildren && expandIcons"></kendo-icon-wrapper>
|
|
239
|
+
<kendo-icon-wrapper innerCssClass="k-treelist-toggle"
|
|
235
240
|
aria-hidden="true"
|
|
236
241
|
*ngIf="hasChildren && expandIcons && !loading"
|
|
237
242
|
[name]="arrowIcon"
|
|
@@ -30,10 +30,11 @@ import * as i6 from "../navigation/navigation.service";
|
|
|
30
30
|
import * as i7 from "../expand-state/expand-state.service";
|
|
31
31
|
import * as i8 from "../selection/selection.service";
|
|
32
32
|
import * as i9 from "./cell.component";
|
|
33
|
-
import * as i10 from "@angular
|
|
34
|
-
import * as i11 from "
|
|
35
|
-
import * as i12 from "../navigation/logical-
|
|
36
|
-
import * as i13 from "
|
|
33
|
+
import * as i10 from "@progress/kendo-angular-icons";
|
|
34
|
+
import * as i11 from "@angular/common";
|
|
35
|
+
import * as i12 from "../navigation/logical-row.directive";
|
|
36
|
+
import * as i13 from "../navigation/logical-cell.directive";
|
|
37
|
+
import * as i14 from "./common/level-items.pipe";
|
|
37
38
|
const columnCellIndex = (cell, cells) => {
|
|
38
39
|
for (let idx = 0; idx < cells.length; idx++) {
|
|
39
40
|
if (cells[idx] === cell) {
|
|
@@ -65,6 +66,11 @@ export class TableBodyComponent {
|
|
|
65
66
|
this.lockedColumnsCount = 0;
|
|
66
67
|
this.totalColumnsCount = 0;
|
|
67
68
|
this.trackBy = defaultTrackBy;
|
|
69
|
+
this.noneIcon = {
|
|
70
|
+
name: 'none',
|
|
71
|
+
content: '',
|
|
72
|
+
viewBox: '0 0 24 24'
|
|
73
|
+
};
|
|
68
74
|
this.rowClass = () => null;
|
|
69
75
|
this.cellKeydownSubscription = this.navigationService.cellKeydown.subscribe((args) => this.cellKeydownHandler(args));
|
|
70
76
|
this.trackByWrapper = this.trackByWrapper.bind(this);
|
|
@@ -309,7 +315,7 @@ export class TableBodyComponent {
|
|
|
309
315
|
return {};
|
|
310
316
|
}
|
|
311
317
|
expandClick(eventArg, row) {
|
|
312
|
-
if (eventArg.type === 'click' && eventArg.target.closest('.k-icon-wrapper-host')) {
|
|
318
|
+
if (eventArg.type === 'click' && !hasClasses(eventArg.target, EMPTY_ICON_CLASS) && eventArg.target.closest('.k-icon-wrapper-host')) {
|
|
313
319
|
eventArg.preventDefault();
|
|
314
320
|
const viewItem = this.rowItem(row);
|
|
315
321
|
if (viewItem.type === 'data') {
|
|
@@ -421,7 +427,7 @@ TableBodyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
421
427
|
[ngStyle]="column.footerStyle"
|
|
422
428
|
*ngFor="let column of footerColumns; let columnIndex = index; trackBy: trackByColumns;">
|
|
423
429
|
<ng-container *ngIf="$any(column).expandable">
|
|
424
|
-
<
|
|
430
|
+
<kendo-icon-wrapper name="none" innerCssClass="k-treelist-toggle" [svgIcon]="noneIcon" *ngFor="let item of item.level | levelItems"></kendo-icon-wrapper>
|
|
425
431
|
</ng-container>
|
|
426
432
|
<ng-container [ngTemplateOutlet]="column.footerTemplateRef"
|
|
427
433
|
[ngTemplateOutletContext]="{
|
|
@@ -437,7 +443,7 @@ TableBodyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
437
443
|
</td>
|
|
438
444
|
</tr>
|
|
439
445
|
</ng-container>
|
|
440
|
-
`, isInline: true, components: [{ type: i9.CellComponent, selector: "[kendoTreeListCell]", inputs: ["column", "columnIndex", "isNew", "level", "hasChildren", "isExpanded", "loading", "expandIcons", "selected", "dataItem", "viewItem"] }], directives: [{ type:
|
|
446
|
+
`, isInline: true, components: [{ type: i9.CellComponent, selector: "[kendoTreeListCell]", inputs: ["column", "columnIndex", "isNew", "level", "hasChildren", "isExpanded", "loading", "expandIcons", "selected", "dataItem", "viewItem"] }, { type: i10.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i11.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i12.LogicalRowDirective, selector: "[kendoTreeListLogicalRow]", inputs: ["logicalRowIndex", "logicalSlaveRow", "logicalCellsCount", "logicalSlaveCellsCount", "dataRowIndex", "dataItem", "isNew", "totalColumns"] }, { type: i11.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i13.LogicalCellDirective, selector: "[kendoTreeListLogicalCell]", inputs: ["logicalColIndex", "logicalRowIndex", "logicalSlaveCell", "column", "colIndex", "colSpan", "rowSpan", "dataRowIndex", "dataItem", "expandable"] }, { type: i11.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }], pipes: { "levelItems": i14.LevelItemsPipe } });
|
|
441
447
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TableBodyComponent, decorators: [{
|
|
442
448
|
type: Component,
|
|
443
449
|
args: [{
|
|
@@ -524,7 +530,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
524
530
|
[ngStyle]="column.footerStyle"
|
|
525
531
|
*ngFor="let column of footerColumns; let columnIndex = index; trackBy: trackByColumns;">
|
|
526
532
|
<ng-container *ngIf="$any(column).expandable">
|
|
527
|
-
<
|
|
533
|
+
<kendo-icon-wrapper name="none" innerCssClass="k-treelist-toggle" [svgIcon]="noneIcon" *ngFor="let item of item.level | levelItems"></kendo-icon-wrapper>
|
|
528
534
|
</ng-container>
|
|
529
535
|
<ng-container [ngTemplateOutlet]="column.footerTemplateRef"
|
|
530
536
|
[ngTemplateOutletContext]="{
|
|
@@ -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: 1696225160,
|
|
52
|
+
version: '14.0.0-develop.4',
|
|
53
53
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
54
54
|
};
|
|
55
55
|
|
|
@@ -3054,7 +3054,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
3054
3054
|
}] });
|
|
3055
3055
|
|
|
3056
3056
|
const updateClass = (element, valid, svg) => {
|
|
3057
|
-
const icon = element.querySelector('.k-icon
|
|
3057
|
+
const icon = element.querySelector('.k-icon');
|
|
3058
3058
|
if (svg) {
|
|
3059
3059
|
const svg = icon.firstElementChild;
|
|
3060
3060
|
svg.removeChild(svg.firstElementChild);
|
|
@@ -3064,7 +3064,7 @@ const updateClass = (element, valid, svg) => {
|
|
|
3064
3064
|
icon.setAttribute('class', icon.getAttribute('class').replace(/(plus|cancel)/, valid ? 'plus' : 'cancel'));
|
|
3065
3065
|
};
|
|
3066
3066
|
const updateLock = (element, locked = null, svg) => {
|
|
3067
|
-
const icon = element.querySelectorAll('.k-icon
|
|
3067
|
+
const icon = element.querySelectorAll('.k-icon')[1];
|
|
3068
3068
|
const value = locked === null ? '' : (locked ? `k${svg ? '-svg' : ''}-i-lock` : `k${svg ? '-svg' : ''}-i-unlock`);
|
|
3069
3069
|
if (svg) {
|
|
3070
3070
|
icon.setAttribute('class', icon.getAttribute('class').replace(/(k-svg-i-unlock|k-svg-i-lock)/, '').trim() + ` ${value}`);
|
|
@@ -3080,7 +3080,7 @@ const decorate = (element) => {
|
|
|
3080
3080
|
element.style.zIndex = '20000';
|
|
3081
3081
|
};
|
|
3082
3082
|
const svgIconsMarkup = (viewBox, content, safeTitle) => `
|
|
3083
|
-
<span class="k-svg-icon k-drag-status k-svg-i-cancel">
|
|
3083
|
+
<span class="k-icon k-svg-icon k-drag-status k-svg-i-cancel">
|
|
3084
3084
|
<svg
|
|
3085
3085
|
xmlns="http://www.w3.org/2000/svg"
|
|
3086
3086
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
@@ -3088,7 +3088,7 @@ const svgIconsMarkup = (viewBox, content, safeTitle) => `
|
|
|
3088
3088
|
aria-hidden="true">
|
|
3089
3089
|
${content}
|
|
3090
3090
|
</svg>
|
|
3091
|
-
<span class="k-svg-icon k-icon-modifier">
|
|
3091
|
+
<span class="k-icon k-svg-icon k-icon-modifier">
|
|
3092
3092
|
<svg
|
|
3093
3093
|
xmlns="http://www.w3.org/2000/svg"
|
|
3094
3094
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
@@ -3099,8 +3099,8 @@ const svgIconsMarkup = (viewBox, content, safeTitle) => `
|
|
|
3099
3099
|
</span>
|
|
3100
3100
|
${safeTitle}`;
|
|
3101
3101
|
const fontIconsMarkup = (safeTitle) => `
|
|
3102
|
-
<span class="k-icon k-drag-status k-i-cancel">
|
|
3103
|
-
<span class="k-icon k-icon-modifier"></span>
|
|
3102
|
+
<span class="k-icon k-font-icon k-drag-status k-i-cancel">
|
|
3103
|
+
<span class="k-icon k-font-icon k-icon-modifier"></span>
|
|
3104
3104
|
</span>
|
|
3105
3105
|
${safeTitle}`;
|
|
3106
3106
|
/**
|
|
@@ -6340,7 +6340,7 @@ FilterMenuInputWrapperComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion:
|
|
|
6340
6340
|
valueField="value">
|
|
6341
6341
|
</kendo-dropdownlist>
|
|
6342
6342
|
<ng-content></ng-content>
|
|
6343
|
-
`, isInline: true, components: [{ type: i3$1.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["showStickyHeader", "
|
|
6343
|
+
`, 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"] }] });
|
|
6344
6344
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: FilterMenuInputWrapperComponent, decorators: [{
|
|
6345
6345
|
type: Component,
|
|
6346
6346
|
args: [{
|
|
@@ -6510,7 +6510,7 @@ StringFilterMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
|
6510
6510
|
[column]="column"
|
|
6511
6511
|
[filter]="filter">
|
|
6512
6512
|
</kendo-treelist-string-filter-menu-input>
|
|
6513
|
-
`, 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", "
|
|
6513
|
+
`, 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"] }] });
|
|
6514
6514
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StringFilterMenuComponent, decorators: [{
|
|
6515
6515
|
type: Component,
|
|
6516
6516
|
args: [{
|
|
@@ -6858,7 +6858,7 @@ NumericFilterMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
6858
6858
|
[step]="step"
|
|
6859
6859
|
>
|
|
6860
6860
|
</kendo-treelist-numeric-filter-menu-input>
|
|
6861
|
-
`, 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", "
|
|
6861
|
+
`, 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"] }] });
|
|
6862
6862
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: NumericFilterMenuComponent, decorators: [{
|
|
6863
6863
|
type: Component,
|
|
6864
6864
|
args: [{
|
|
@@ -7262,7 +7262,7 @@ DateFilterMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
7262
7262
|
[weekNumber]="weekNumber"
|
|
7263
7263
|
>
|
|
7264
7264
|
</kendo-treelist-date-filter-menu-input>
|
|
7265
|
-
`, 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", "
|
|
7265
|
+
`, 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"] }] });
|
|
7266
7266
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DateFilterMenuComponent, decorators: [{
|
|
7267
7267
|
type: Component,
|
|
7268
7268
|
args: [{
|
|
@@ -8884,6 +8884,10 @@ class FilterCellOperatorsComponent {
|
|
|
8884
8884
|
this.localization = localization;
|
|
8885
8885
|
this.clearText = 'Clear';
|
|
8886
8886
|
this.filterClearIcon = filterClearIcon;
|
|
8887
|
+
/**
|
|
8888
|
+
* @hidden
|
|
8889
|
+
*/
|
|
8890
|
+
this.filterSVGIcon = filterIcon;
|
|
8887
8891
|
/**
|
|
8888
8892
|
* The filter operators that will be displayed.
|
|
8889
8893
|
*/
|
|
@@ -8978,7 +8982,8 @@ FilterCellOperatorsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12
|
|
|
8978
8982
|
(valueChange)="onChange($event)"
|
|
8979
8983
|
[value]="value"
|
|
8980
8984
|
[attr.aria-label]="column && columnLabel"
|
|
8981
|
-
|
|
8985
|
+
icon="filter"
|
|
8986
|
+
[svgIcon]="filterSVGIcon"
|
|
8982
8987
|
[valuePrimitive]="true"
|
|
8983
8988
|
textField="text"
|
|
8984
8989
|
[popupSettings]="{ width: 'auto' }"
|
|
@@ -8995,7 +9000,7 @@ FilterCellOperatorsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12
|
|
|
8995
9000
|
(click)="clearClick()"
|
|
8996
9001
|
(keydown)="clearKeydown($event)">
|
|
8997
9002
|
</button>
|
|
8998
|
-
`, isInline: true, components: [{ type: i3$1.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["showStickyHeader", "
|
|
9003
|
+
`, 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"] }] });
|
|
8999
9004
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: FilterCellOperatorsComponent, decorators: [{
|
|
9000
9005
|
type: Component,
|
|
9001
9006
|
args: [{
|
|
@@ -9010,7 +9015,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
9010
9015
|
(valueChange)="onChange($event)"
|
|
9011
9016
|
[value]="value"
|
|
9012
9017
|
[attr.aria-label]="column && columnLabel"
|
|
9013
|
-
|
|
9018
|
+
icon="filter"
|
|
9019
|
+
[svgIcon]="filterSVGIcon"
|
|
9014
9020
|
[valuePrimitive]="true"
|
|
9015
9021
|
textField="text"
|
|
9016
9022
|
[popupSettings]="{ width: 'auto' }"
|
|
@@ -9359,7 +9365,7 @@ BooleanFilterCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
9359
9365
|
[value]="currentFilter?.value">
|
|
9360
9366
|
</kendo-dropdownlist>
|
|
9361
9367
|
</kendo-treelist-filter-wrapper-cell>
|
|
9362
|
-
`, isInline: true, components: [{ type: FilterCellWrapperComponent, selector: "kendo-treelist-filter-wrapper-cell", inputs: ["showOperators"] }, { type: i3$1.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["showStickyHeader", "
|
|
9368
|
+
`, 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"] }] });
|
|
9363
9369
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BooleanFilterCellComponent, decorators: [{
|
|
9364
9370
|
type: Component,
|
|
9365
9371
|
args: [{
|
|
@@ -11122,7 +11128,7 @@ const NON_DATA_ROW_CLASSES = 'k-grouping-row k-group-footer k-detail-row k-grid-
|
|
|
11122
11128
|
/**
|
|
11123
11129
|
* @hidden
|
|
11124
11130
|
*/
|
|
11125
|
-
const EMPTY_ICON_CLASS = 'k-i-none';
|
|
11131
|
+
const EMPTY_ICON_CLASS = 'k-i-none k-svg-i-none';
|
|
11126
11132
|
/**
|
|
11127
11133
|
* @hidden
|
|
11128
11134
|
*/
|
|
@@ -11211,6 +11217,11 @@ class CellComponent {
|
|
|
11211
11217
|
this.caretAltRightIcon = caretAltRightIcon;
|
|
11212
11218
|
this.caretAltLeftIcon = caretAltLeftIcon;
|
|
11213
11219
|
this.reorderIcon = reorderIcon;
|
|
11220
|
+
this.noneIcon = {
|
|
11221
|
+
name: 'none',
|
|
11222
|
+
content: '',
|
|
11223
|
+
viewBox: '0 0 24 24'
|
|
11224
|
+
};
|
|
11214
11225
|
this.cellContext = {};
|
|
11215
11226
|
this._templateContext = {};
|
|
11216
11227
|
this._editTemplateContext = {};
|
|
@@ -11323,8 +11334,8 @@ CellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
|
|
|
11323
11334
|
<ng-container [ngSwitch]="isEdited">
|
|
11324
11335
|
<ng-container *ngSwitchCase="false">
|
|
11325
11336
|
<ng-container *ngIf="column.expandable">
|
|
11326
|
-
<
|
|
11327
|
-
<kendo-icon-wrapper
|
|
11337
|
+
<kendo-icon-wrapper name="none" innerCssClass="k-treelist-toggle" [svgIcon]="noneIcon" *ngFor="let item of level | levelItems : hasChildren && expandIcons"></kendo-icon-wrapper>
|
|
11338
|
+
<kendo-icon-wrapper innerCssClass="k-treelist-toggle"
|
|
11328
11339
|
aria-hidden="true"
|
|
11329
11340
|
*ngIf="hasChildren && expandIcons && !loading"
|
|
11330
11341
|
[name]="arrowIcon"
|
|
@@ -11404,8 +11415,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
11404
11415
|
<ng-container [ngSwitch]="isEdited">
|
|
11405
11416
|
<ng-container *ngSwitchCase="false">
|
|
11406
11417
|
<ng-container *ngIf="column.expandable">
|
|
11407
|
-
<
|
|
11408
|
-
<kendo-icon-wrapper
|
|
11418
|
+
<kendo-icon-wrapper name="none" innerCssClass="k-treelist-toggle" [svgIcon]="noneIcon" *ngFor="let item of level | levelItems : hasChildren && expandIcons"></kendo-icon-wrapper>
|
|
11419
|
+
<kendo-icon-wrapper innerCssClass="k-treelist-toggle"
|
|
11409
11420
|
aria-hidden="true"
|
|
11410
11421
|
*ngIf="hasChildren && expandIcons && !loading"
|
|
11411
11422
|
[name]="arrowIcon"
|
|
@@ -11551,6 +11562,11 @@ class TableBodyComponent {
|
|
|
11551
11562
|
this.lockedColumnsCount = 0;
|
|
11552
11563
|
this.totalColumnsCount = 0;
|
|
11553
11564
|
this.trackBy = defaultTrackBy;
|
|
11565
|
+
this.noneIcon = {
|
|
11566
|
+
name: 'none',
|
|
11567
|
+
content: '',
|
|
11568
|
+
viewBox: '0 0 24 24'
|
|
11569
|
+
};
|
|
11554
11570
|
this.rowClass = () => null;
|
|
11555
11571
|
this.cellKeydownSubscription = this.navigationService.cellKeydown.subscribe((args) => this.cellKeydownHandler(args));
|
|
11556
11572
|
this.trackByWrapper = this.trackByWrapper.bind(this);
|
|
@@ -11795,7 +11811,7 @@ class TableBodyComponent {
|
|
|
11795
11811
|
return {};
|
|
11796
11812
|
}
|
|
11797
11813
|
expandClick(eventArg, row) {
|
|
11798
|
-
if (eventArg.type === 'click' && eventArg.target.closest('.k-icon-wrapper-host')) {
|
|
11814
|
+
if (eventArg.type === 'click' && !hasClasses(eventArg.target, EMPTY_ICON_CLASS) && eventArg.target.closest('.k-icon-wrapper-host')) {
|
|
11799
11815
|
eventArg.preventDefault();
|
|
11800
11816
|
const viewItem = this.rowItem(row);
|
|
11801
11817
|
if (viewItem.type === 'data') {
|
|
@@ -11907,7 +11923,7 @@ TableBodyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
11907
11923
|
[ngStyle]="column.footerStyle"
|
|
11908
11924
|
*ngFor="let column of footerColumns; let columnIndex = index; trackBy: trackByColumns;">
|
|
11909
11925
|
<ng-container *ngIf="$any(column).expandable">
|
|
11910
|
-
<
|
|
11926
|
+
<kendo-icon-wrapper name="none" innerCssClass="k-treelist-toggle" [svgIcon]="noneIcon" *ngFor="let item of item.level | levelItems"></kendo-icon-wrapper>
|
|
11911
11927
|
</ng-container>
|
|
11912
11928
|
<ng-container [ngTemplateOutlet]="column.footerTemplateRef"
|
|
11913
11929
|
[ngTemplateOutletContext]="{
|
|
@@ -11923,7 +11939,7 @@ TableBodyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
11923
11939
|
</td>
|
|
11924
11940
|
</tr>
|
|
11925
11941
|
</ng-container>
|
|
11926
|
-
`, 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 } });
|
|
11942
|
+
`, 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 } });
|
|
11927
11943
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TableBodyComponent, decorators: [{
|
|
11928
11944
|
type: Component,
|
|
11929
11945
|
args: [{
|
|
@@ -12010,7 +12026,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
12010
12026
|
[ngStyle]="column.footerStyle"
|
|
12011
12027
|
*ngFor="let column of footerColumns; let columnIndex = index; trackBy: trackByColumns;">
|
|
12012
12028
|
<ng-container *ngIf="$any(column).expandable">
|
|
12013
|
-
<
|
|
12029
|
+
<kendo-icon-wrapper name="none" innerCssClass="k-treelist-toggle" [svgIcon]="noneIcon" *ngFor="let item of item.level | levelItems"></kendo-icon-wrapper>
|
|
12014
12030
|
</ng-container>
|
|
12015
12031
|
<ng-container [ngTemplateOutlet]="column.footerTemplateRef"
|
|
12016
12032
|
[ngTemplateOutletContext]="{
|
|
@@ -13242,7 +13258,7 @@ PagerPageSizesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
13242
13258
|
[attr.aria-label]="textFor('pagerItemsPerPage')"
|
|
13243
13259
|
(valueChange)="pageSizeChange($event)"></kendo-dropdownlist>
|
|
13244
13260
|
<kendo-label [for]="dropdownlist" [text]="textFor('pagerItemsPerPage')"></kendo-label>
|
|
13245
|
-
`, isInline: true, components: [{ type: i3$1.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["showStickyHeader", "
|
|
13261
|
+
`, 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 });
|
|
13246
13262
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PagerPageSizesComponent, decorators: [{
|
|
13247
13263
|
type: Component,
|
|
13248
13264
|
args: [{
|
|
@@ -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: 1696225160,
|
|
52
|
+
version: '14.0.0-develop.4',
|
|
53
53
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
54
54
|
};
|
|
55
55
|
|
|
@@ -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: [{
|
|
@@ -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: [{
|
|
@@ -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"
|
|
@@ -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
|
*/
|
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.4",
|
|
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.4",
|
|
34
|
+
"@progress/kendo-angular-common": "14.0.0-develop.4",
|
|
35
|
+
"@progress/kendo-angular-dateinputs": "14.0.0-develop.4",
|
|
36
|
+
"@progress/kendo-angular-dropdowns": "14.0.0-develop.4",
|
|
37
|
+
"@progress/kendo-angular-excel-export": "14.0.0-develop.4",
|
|
38
|
+
"@progress/kendo-angular-icons": "14.0.0-develop.4",
|
|
39
|
+
"@progress/kendo-angular-inputs": "14.0.0-develop.4",
|
|
40
|
+
"@progress/kendo-angular-intl": "14.0.0-develop.4",
|
|
41
|
+
"@progress/kendo-angular-l10n": "14.0.0-develop.4",
|
|
42
|
+
"@progress/kendo-angular-label": "14.0.0-develop.4",
|
|
43
|
+
"@progress/kendo-angular-pdf-export": "14.0.0-develop.4",
|
|
44
|
+
"@progress/kendo-angular-popup": "14.0.0-develop.4",
|
|
45
|
+
"@progress/kendo-angular-utils": "14.0.0-develop.4",
|
|
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.4"
|
|
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.4",
|
|
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.4',
|
|
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.4',
|
|
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.4',
|
|
14
14
|
} });
|
|
15
15
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
16
16
|
}
|