@progress/kendo-angular-treelist 16.9.1-develop.4 → 16.10.0-develop.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/column-menu/column-menu-item.component.d.ts +4 -0
- package/esm2020/column-menu/column-menu-item.component.mjs +53 -18
- package/esm2020/package-metadata.mjs +2 -2
- package/fesm2015/progress-kendo-angular-treelist.mjs +55 -21
- package/fesm2020/progress-kendo-angular-treelist.mjs +55 -21
- package/package.json +16 -16
- package/schematics/ngAdd/index.js +3 -3
@@ -60,6 +60,10 @@ export declare class ColumnMenuItemComponent implements OnChanges {
|
|
60
60
|
expanded: boolean;
|
61
61
|
contentTemplate: ColumnMenuItemContentTemplateDirective;
|
62
62
|
contentState: string;
|
63
|
+
chevronUpIcon: SVGIcon;
|
64
|
+
chevronDownIcon: SVGIcon;
|
65
|
+
get expandedIcon(): string;
|
66
|
+
get expandedSvgIcon(): SVGIcon;
|
63
67
|
ngOnChanges(changes: any): void;
|
64
68
|
/**
|
65
69
|
* @hidden
|
@@ -5,6 +5,7 @@
|
|
5
5
|
import { Component, Input, Output, EventEmitter, ContentChild } from '@angular/core';
|
6
6
|
import { NgIf, NgTemplateOutlet } from '@angular/common';
|
7
7
|
import { trigger, transition, style, animate, state } from '@angular/animations';
|
8
|
+
import { chevronDownIcon, chevronUpIcon } from '@progress/kendo-svg-icons';
|
8
9
|
import { IconWrapperComponent } from '@progress/kendo-angular-icons';
|
9
10
|
import { ColumnMenuItemContentTemplateDirective } from './column-menu-item-content-template.directive';
|
10
11
|
import * as i0 from "@angular/core";
|
@@ -36,6 +37,14 @@ export class ColumnMenuItemComponent {
|
|
36
37
|
*/
|
37
38
|
this.collapse = new EventEmitter();
|
38
39
|
this.contentState = 'collapsed';
|
40
|
+
this.chevronUpIcon = chevronUpIcon;
|
41
|
+
this.chevronDownIcon = chevronDownIcon;
|
42
|
+
}
|
43
|
+
get expandedIcon() {
|
44
|
+
return this.expanded ? 'arrow-chevron-up' : 'arrow-chevron-down';
|
45
|
+
}
|
46
|
+
get expandedSvgIcon() {
|
47
|
+
return this.expanded ? this.chevronUpIcon : this.chevronDownIcon;
|
39
48
|
}
|
40
49
|
ngOnChanges(changes) {
|
41
50
|
if (changes.expanded) {
|
@@ -64,16 +73,29 @@ export class ColumnMenuItemComponent {
|
|
64
73
|
}
|
65
74
|
ColumnMenuItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ColumnMenuItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
66
75
|
ColumnMenuItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ColumnMenuItemComponent, isStandalone: true, selector: "kendo-treelist-columnmenu-item", inputs: { icon: "icon", svgIcon: "svgIcon", text: "text", selected: "selected", disabled: "disabled", expanded: "expanded" }, outputs: { itemClick: "itemClick", expand: "expand", collapse: "collapse" }, queries: [{ propertyName: "contentTemplate", first: true, predicate: ColumnMenuItemContentTemplateDirective, descendants: true }], usesOnChanges: true, ngImport: i0, template: `
|
67
|
-
<div
|
68
|
-
<
|
69
|
-
[name]="icon"
|
70
|
-
[svgIcon]="svgIcon"></kendo-icon-wrapper>
|
71
|
-
{{ text }}
|
76
|
+
<div *ngIf="contentTemplate; else content" class="k-expander">
|
77
|
+
<ng-container [ngTemplateOutlet]="content"></ng-container>
|
72
78
|
</div>
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
79
|
+
|
80
|
+
<ng-template #content>
|
81
|
+
<div class="k-columnmenu-item" (click)="onClick($event)" [class.k-selected]="selected" [class.k-disabled]="disabled">
|
82
|
+
<kendo-icon-wrapper
|
83
|
+
[name]="icon"
|
84
|
+
[svgIcon]="svgIcon"></kendo-icon-wrapper>
|
85
|
+
{{ text }}
|
86
|
+
<span *ngIf="contentTemplate" class="k-spacer"></span>
|
87
|
+
<span *ngIf="contentTemplate" class="k-expander-indicator">
|
88
|
+
<kendo-icon-wrapper
|
89
|
+
[name]="expandedIcon"
|
90
|
+
[svgIcon]="expandedSvgIcon">
|
91
|
+
</kendo-icon-wrapper>
|
92
|
+
</span>
|
93
|
+
</div>
|
94
|
+
<div *ngIf="contentTemplate" [@state]="contentState" [style.overflow]="'hidden'" class="k-columnmenu-item-content">
|
95
|
+
<ng-container [ngTemplateOutlet]="contentTemplate.templateRef">
|
96
|
+
</ng-container>
|
97
|
+
</div>
|
98
|
+
</ng-template>
|
77
99
|
`, isInline: true, dependencies: [{ kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], animations: [
|
78
100
|
trigger('state', [
|
79
101
|
state('collapsed', style({ display: 'none' })),
|
@@ -125,16 +147,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
125
147
|
],
|
126
148
|
selector: 'kendo-treelist-columnmenu-item',
|
127
149
|
template: `
|
128
|
-
<div
|
129
|
-
<
|
130
|
-
[name]="icon"
|
131
|
-
[svgIcon]="svgIcon"></kendo-icon-wrapper>
|
132
|
-
{{ text }}
|
150
|
+
<div *ngIf="contentTemplate; else content" class="k-expander">
|
151
|
+
<ng-container [ngTemplateOutlet]="content"></ng-container>
|
133
152
|
</div>
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
153
|
+
|
154
|
+
<ng-template #content>
|
155
|
+
<div class="k-columnmenu-item" (click)="onClick($event)" [class.k-selected]="selected" [class.k-disabled]="disabled">
|
156
|
+
<kendo-icon-wrapper
|
157
|
+
[name]="icon"
|
158
|
+
[svgIcon]="svgIcon"></kendo-icon-wrapper>
|
159
|
+
{{ text }}
|
160
|
+
<span *ngIf="contentTemplate" class="k-spacer"></span>
|
161
|
+
<span *ngIf="contentTemplate" class="k-expander-indicator">
|
162
|
+
<kendo-icon-wrapper
|
163
|
+
[name]="expandedIcon"
|
164
|
+
[svgIcon]="expandedSvgIcon">
|
165
|
+
</kendo-icon-wrapper>
|
166
|
+
</span>
|
167
|
+
</div>
|
168
|
+
<div *ngIf="contentTemplate" [@state]="contentState" [style.overflow]="'hidden'" class="k-columnmenu-item-content">
|
169
|
+
<ng-container [ngTemplateOutlet]="contentTemplate.templateRef">
|
170
|
+
</ng-container>
|
171
|
+
</div>
|
172
|
+
</ng-template>
|
138
173
|
`,
|
139
174
|
standalone: true,
|
140
175
|
imports: [IconWrapperComponent, NgIf, NgTemplateOutlet]
|
@@ -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: '16.
|
12
|
+
publishDate: 1726668289,
|
13
|
+
version: '16.10.0-develop.1',
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
15
15
|
};
|
@@ -23,7 +23,7 @@ import * as i1$1 from '@progress/kendo-angular-l10n';
|
|
23
23
|
import { ComponentMessages, LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
24
24
|
import { DragTargetContainerDirective, DropTargetContainerDirective } from '@progress/kendo-angular-utils';
|
25
25
|
import { orderBy, isCompositeFilterDescriptor, process, aggregateBy } from '@progress/kendo-data-query';
|
26
|
-
import { plusIcon, cancelIcon, lockIcon, unlockIcon, insertMiddleIcon, caretAltLeftIcon, caretAltToLeftIcon, caretAltRightIcon, caretAltToRightIcon, caretAltDownIcon, reorderIcon, filterClearIcon, filterIcon, columnsIcon, sortAscSmallIcon, sortDescSmallIcon, moreVerticalIcon } from '@progress/kendo-svg-icons';
|
26
|
+
import { plusIcon, cancelIcon, lockIcon, unlockIcon, insertMiddleIcon, caretAltLeftIcon, caretAltToLeftIcon, caretAltRightIcon, caretAltToRightIcon, caretAltDownIcon, reorderIcon, filterClearIcon, filterIcon, chevronUpIcon, chevronDownIcon, columnsIcon, sortAscSmallIcon, sortDescSmallIcon, moreVerticalIcon } from '@progress/kendo-svg-icons';
|
27
27
|
import * as i1$2 from '@angular/platform-browser';
|
28
28
|
import { getter, setter } from '@progress/kendo-common';
|
29
29
|
import * as i3$1 from '@progress/kendo-angular-label';
|
@@ -47,8 +47,8 @@ const packageMetadata = {
|
|
47
47
|
name: '@progress/kendo-angular-treelist',
|
48
48
|
productName: 'Kendo UI for Angular',
|
49
49
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
50
|
-
publishDate:
|
51
|
-
version: '16.
|
50
|
+
publishDate: 1726668289,
|
51
|
+
version: '16.10.0-develop.1',
|
52
52
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
53
53
|
};
|
54
54
|
|
@@ -12917,6 +12917,14 @@ class ColumnMenuItemComponent {
|
|
12917
12917
|
*/
|
12918
12918
|
this.collapse = new EventEmitter();
|
12919
12919
|
this.contentState = 'collapsed';
|
12920
|
+
this.chevronUpIcon = chevronUpIcon;
|
12921
|
+
this.chevronDownIcon = chevronDownIcon;
|
12922
|
+
}
|
12923
|
+
get expandedIcon() {
|
12924
|
+
return this.expanded ? 'arrow-chevron-up' : 'arrow-chevron-down';
|
12925
|
+
}
|
12926
|
+
get expandedSvgIcon() {
|
12927
|
+
return this.expanded ? this.chevronUpIcon : this.chevronDownIcon;
|
12920
12928
|
}
|
12921
12929
|
ngOnChanges(changes) {
|
12922
12930
|
if (changes.expanded) {
|
@@ -12945,16 +12953,29 @@ class ColumnMenuItemComponent {
|
|
12945
12953
|
}
|
12946
12954
|
ColumnMenuItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ColumnMenuItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
12947
12955
|
ColumnMenuItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ColumnMenuItemComponent, isStandalone: true, selector: "kendo-treelist-columnmenu-item", inputs: { icon: "icon", svgIcon: "svgIcon", text: "text", selected: "selected", disabled: "disabled", expanded: "expanded" }, outputs: { itemClick: "itemClick", expand: "expand", collapse: "collapse" }, queries: [{ propertyName: "contentTemplate", first: true, predicate: ColumnMenuItemContentTemplateDirective, descendants: true }], usesOnChanges: true, ngImport: i0, template: `
|
12948
|
-
<div
|
12949
|
-
<
|
12950
|
-
[name]="icon"
|
12951
|
-
[svgIcon]="svgIcon"></kendo-icon-wrapper>
|
12952
|
-
{{ text }}
|
12956
|
+
<div *ngIf="contentTemplate; else content" class="k-expander">
|
12957
|
+
<ng-container [ngTemplateOutlet]="content"></ng-container>
|
12953
12958
|
</div>
|
12954
|
-
|
12955
|
-
|
12956
|
-
|
12957
|
-
|
12959
|
+
|
12960
|
+
<ng-template #content>
|
12961
|
+
<div class="k-columnmenu-item" (click)="onClick($event)" [class.k-selected]="selected" [class.k-disabled]="disabled">
|
12962
|
+
<kendo-icon-wrapper
|
12963
|
+
[name]="icon"
|
12964
|
+
[svgIcon]="svgIcon"></kendo-icon-wrapper>
|
12965
|
+
{{ text }}
|
12966
|
+
<span *ngIf="contentTemplate" class="k-spacer"></span>
|
12967
|
+
<span *ngIf="contentTemplate" class="k-expander-indicator">
|
12968
|
+
<kendo-icon-wrapper
|
12969
|
+
[name]="expandedIcon"
|
12970
|
+
[svgIcon]="expandedSvgIcon">
|
12971
|
+
</kendo-icon-wrapper>
|
12972
|
+
</span>
|
12973
|
+
</div>
|
12974
|
+
<div *ngIf="contentTemplate" [@state]="contentState" [style.overflow]="'hidden'" class="k-columnmenu-item-content">
|
12975
|
+
<ng-container [ngTemplateOutlet]="contentTemplate.templateRef">
|
12976
|
+
</ng-container>
|
12977
|
+
</div>
|
12978
|
+
</ng-template>
|
12958
12979
|
`, isInline: true, dependencies: [{ kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], animations: [
|
12959
12980
|
trigger('state', [
|
12960
12981
|
state('collapsed', style({ display: 'none' })),
|
@@ -13006,16 +13027,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
13006
13027
|
],
|
13007
13028
|
selector: 'kendo-treelist-columnmenu-item',
|
13008
13029
|
template: `
|
13009
|
-
<div
|
13010
|
-
<
|
13011
|
-
[name]="icon"
|
13012
|
-
[svgIcon]="svgIcon"></kendo-icon-wrapper>
|
13013
|
-
{{ text }}
|
13030
|
+
<div *ngIf="contentTemplate; else content" class="k-expander">
|
13031
|
+
<ng-container [ngTemplateOutlet]="content"></ng-container>
|
13014
13032
|
</div>
|
13015
|
-
|
13016
|
-
|
13017
|
-
|
13018
|
-
|
13033
|
+
|
13034
|
+
<ng-template #content>
|
13035
|
+
<div class="k-columnmenu-item" (click)="onClick($event)" [class.k-selected]="selected" [class.k-disabled]="disabled">
|
13036
|
+
<kendo-icon-wrapper
|
13037
|
+
[name]="icon"
|
13038
|
+
[svgIcon]="svgIcon"></kendo-icon-wrapper>
|
13039
|
+
{{ text }}
|
13040
|
+
<span *ngIf="contentTemplate" class="k-spacer"></span>
|
13041
|
+
<span *ngIf="contentTemplate" class="k-expander-indicator">
|
13042
|
+
<kendo-icon-wrapper
|
13043
|
+
[name]="expandedIcon"
|
13044
|
+
[svgIcon]="expandedSvgIcon">
|
13045
|
+
</kendo-icon-wrapper>
|
13046
|
+
</span>
|
13047
|
+
</div>
|
13048
|
+
<div *ngIf="contentTemplate" [@state]="contentState" [style.overflow]="'hidden'" class="k-columnmenu-item-content">
|
13049
|
+
<ng-container [ngTemplateOutlet]="contentTemplate.templateRef">
|
13050
|
+
</ng-container>
|
13051
|
+
</div>
|
13052
|
+
</ng-template>
|
13019
13053
|
`,
|
13020
13054
|
standalone: true,
|
13021
13055
|
imports: [IconWrapperComponent, NgIf, NgTemplateOutlet]
|
@@ -24,7 +24,7 @@ import { ComponentMessages, LocalizationService, L10N_PREFIX } from '@progress/k
|
|
24
24
|
import { DragTargetContainerDirective, DropTargetContainerDirective } from '@progress/kendo-angular-utils';
|
25
25
|
import { orderBy, isCompositeFilterDescriptor, process, aggregateBy } from '@progress/kendo-data-query';
|
26
26
|
import * as i1$2 from '@angular/platform-browser';
|
27
|
-
import { plusIcon, cancelIcon, lockIcon, unlockIcon, insertMiddleIcon, caretAltLeftIcon, caretAltToLeftIcon, caretAltRightIcon, caretAltToRightIcon, caretAltDownIcon, reorderIcon, filterClearIcon, filterIcon, columnsIcon, sortAscSmallIcon, sortDescSmallIcon, moreVerticalIcon } from '@progress/kendo-svg-icons';
|
27
|
+
import { plusIcon, cancelIcon, lockIcon, unlockIcon, insertMiddleIcon, caretAltLeftIcon, caretAltToLeftIcon, caretAltRightIcon, caretAltToRightIcon, caretAltDownIcon, reorderIcon, filterClearIcon, filterIcon, chevronUpIcon, chevronDownIcon, columnsIcon, sortAscSmallIcon, sortDescSmallIcon, moreVerticalIcon } from '@progress/kendo-svg-icons';
|
28
28
|
import { getter, setter } from '@progress/kendo-common';
|
29
29
|
import * as i3$1 from '@progress/kendo-angular-label';
|
30
30
|
import { LabelComponent, KENDO_LABEL } from '@progress/kendo-angular-label';
|
@@ -47,8 +47,8 @@ const packageMetadata = {
|
|
47
47
|
name: '@progress/kendo-angular-treelist',
|
48
48
|
productName: 'Kendo UI for Angular',
|
49
49
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
50
|
-
publishDate:
|
51
|
-
version: '16.
|
50
|
+
publishDate: 1726668289,
|
51
|
+
version: '16.10.0-develop.1',
|
52
52
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
53
53
|
};
|
54
54
|
|
@@ -12866,6 +12866,14 @@ class ColumnMenuItemComponent {
|
|
12866
12866
|
*/
|
12867
12867
|
this.collapse = new EventEmitter();
|
12868
12868
|
this.contentState = 'collapsed';
|
12869
|
+
this.chevronUpIcon = chevronUpIcon;
|
12870
|
+
this.chevronDownIcon = chevronDownIcon;
|
12871
|
+
}
|
12872
|
+
get expandedIcon() {
|
12873
|
+
return this.expanded ? 'arrow-chevron-up' : 'arrow-chevron-down';
|
12874
|
+
}
|
12875
|
+
get expandedSvgIcon() {
|
12876
|
+
return this.expanded ? this.chevronUpIcon : this.chevronDownIcon;
|
12869
12877
|
}
|
12870
12878
|
ngOnChanges(changes) {
|
12871
12879
|
if (changes.expanded) {
|
@@ -12894,16 +12902,29 @@ class ColumnMenuItemComponent {
|
|
12894
12902
|
}
|
12895
12903
|
ColumnMenuItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ColumnMenuItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
12896
12904
|
ColumnMenuItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ColumnMenuItemComponent, isStandalone: true, selector: "kendo-treelist-columnmenu-item", inputs: { icon: "icon", svgIcon: "svgIcon", text: "text", selected: "selected", disabled: "disabled", expanded: "expanded" }, outputs: { itemClick: "itemClick", expand: "expand", collapse: "collapse" }, queries: [{ propertyName: "contentTemplate", first: true, predicate: ColumnMenuItemContentTemplateDirective, descendants: true }], usesOnChanges: true, ngImport: i0, template: `
|
12897
|
-
<div
|
12898
|
-
<
|
12899
|
-
[name]="icon"
|
12900
|
-
[svgIcon]="svgIcon"></kendo-icon-wrapper>
|
12901
|
-
{{ text }}
|
12905
|
+
<div *ngIf="contentTemplate; else content" class="k-expander">
|
12906
|
+
<ng-container [ngTemplateOutlet]="content"></ng-container>
|
12902
12907
|
</div>
|
12903
|
-
|
12904
|
-
|
12905
|
-
|
12906
|
-
|
12908
|
+
|
12909
|
+
<ng-template #content>
|
12910
|
+
<div class="k-columnmenu-item" (click)="onClick($event)" [class.k-selected]="selected" [class.k-disabled]="disabled">
|
12911
|
+
<kendo-icon-wrapper
|
12912
|
+
[name]="icon"
|
12913
|
+
[svgIcon]="svgIcon"></kendo-icon-wrapper>
|
12914
|
+
{{ text }}
|
12915
|
+
<span *ngIf="contentTemplate" class="k-spacer"></span>
|
12916
|
+
<span *ngIf="contentTemplate" class="k-expander-indicator">
|
12917
|
+
<kendo-icon-wrapper
|
12918
|
+
[name]="expandedIcon"
|
12919
|
+
[svgIcon]="expandedSvgIcon">
|
12920
|
+
</kendo-icon-wrapper>
|
12921
|
+
</span>
|
12922
|
+
</div>
|
12923
|
+
<div *ngIf="contentTemplate" [@state]="contentState" [style.overflow]="'hidden'" class="k-columnmenu-item-content">
|
12924
|
+
<ng-container [ngTemplateOutlet]="contentTemplate.templateRef">
|
12925
|
+
</ng-container>
|
12926
|
+
</div>
|
12927
|
+
</ng-template>
|
12907
12928
|
`, isInline: true, dependencies: [{ kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], animations: [
|
12908
12929
|
trigger('state', [
|
12909
12930
|
state('collapsed', style({ display: 'none' })),
|
@@ -12955,16 +12976,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
12955
12976
|
],
|
12956
12977
|
selector: 'kendo-treelist-columnmenu-item',
|
12957
12978
|
template: `
|
12958
|
-
<div
|
12959
|
-
<
|
12960
|
-
[name]="icon"
|
12961
|
-
[svgIcon]="svgIcon"></kendo-icon-wrapper>
|
12962
|
-
{{ text }}
|
12979
|
+
<div *ngIf="contentTemplate; else content" class="k-expander">
|
12980
|
+
<ng-container [ngTemplateOutlet]="content"></ng-container>
|
12963
12981
|
</div>
|
12964
|
-
|
12965
|
-
|
12966
|
-
|
12967
|
-
|
12982
|
+
|
12983
|
+
<ng-template #content>
|
12984
|
+
<div class="k-columnmenu-item" (click)="onClick($event)" [class.k-selected]="selected" [class.k-disabled]="disabled">
|
12985
|
+
<kendo-icon-wrapper
|
12986
|
+
[name]="icon"
|
12987
|
+
[svgIcon]="svgIcon"></kendo-icon-wrapper>
|
12988
|
+
{{ text }}
|
12989
|
+
<span *ngIf="contentTemplate" class="k-spacer"></span>
|
12990
|
+
<span *ngIf="contentTemplate" class="k-expander-indicator">
|
12991
|
+
<kendo-icon-wrapper
|
12992
|
+
[name]="expandedIcon"
|
12993
|
+
[svgIcon]="expandedSvgIcon">
|
12994
|
+
</kendo-icon-wrapper>
|
12995
|
+
</span>
|
12996
|
+
</div>
|
12997
|
+
<div *ngIf="contentTemplate" [@state]="contentState" [style.overflow]="'hidden'" class="k-columnmenu-item-content">
|
12998
|
+
<ng-container [ngTemplateOutlet]="contentTemplate.templateRef">
|
12999
|
+
</ng-container>
|
13000
|
+
</div>
|
13001
|
+
</ng-template>
|
12968
13002
|
`,
|
12969
13003
|
standalone: true,
|
12970
13004
|
imports: [IconWrapperComponent, NgIf, NgTemplateOutlet]
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@progress/kendo-angular-treelist",
|
3
|
-
"version": "16.
|
3
|
+
"version": "16.10.0-develop.1",
|
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",
|
@@ -29,26 +29,26 @@
|
|
29
29
|
"@angular/forms": "15 - 18",
|
30
30
|
"@angular/platform-browser": "15 - 18",
|
31
31
|
"@progress/kendo-data-query": "^1.0.0",
|
32
|
-
"@progress/kendo-drawing": "^1.
|
32
|
+
"@progress/kendo-drawing": "^1.20.3",
|
33
33
|
"@progress/kendo-licensing": "^1.0.2",
|
34
|
-
"@progress/kendo-angular-buttons": "16.
|
35
|
-
"@progress/kendo-angular-common": "16.
|
36
|
-
"@progress/kendo-angular-dateinputs": "16.
|
37
|
-
"@progress/kendo-angular-dropdowns": "16.
|
38
|
-
"@progress/kendo-angular-excel-export": "16.
|
39
|
-
"@progress/kendo-angular-icons": "16.
|
40
|
-
"@progress/kendo-angular-inputs": "16.
|
41
|
-
"@progress/kendo-angular-intl": "16.
|
42
|
-
"@progress/kendo-angular-l10n": "16.
|
43
|
-
"@progress/kendo-angular-label": "16.
|
44
|
-
"@progress/kendo-angular-pdf-export": "16.
|
45
|
-
"@progress/kendo-angular-popup": "16.
|
46
|
-
"@progress/kendo-angular-utils": "16.
|
34
|
+
"@progress/kendo-angular-buttons": "16.10.0-develop.1",
|
35
|
+
"@progress/kendo-angular-common": "16.10.0-develop.1",
|
36
|
+
"@progress/kendo-angular-dateinputs": "16.10.0-develop.1",
|
37
|
+
"@progress/kendo-angular-dropdowns": "16.10.0-develop.1",
|
38
|
+
"@progress/kendo-angular-excel-export": "16.10.0-develop.1",
|
39
|
+
"@progress/kendo-angular-icons": "16.10.0-develop.1",
|
40
|
+
"@progress/kendo-angular-inputs": "16.10.0-develop.1",
|
41
|
+
"@progress/kendo-angular-intl": "16.10.0-develop.1",
|
42
|
+
"@progress/kendo-angular-l10n": "16.10.0-develop.1",
|
43
|
+
"@progress/kendo-angular-label": "16.10.0-develop.1",
|
44
|
+
"@progress/kendo-angular-pdf-export": "16.10.0-develop.1",
|
45
|
+
"@progress/kendo-angular-popup": "16.10.0-develop.1",
|
46
|
+
"@progress/kendo-angular-utils": "16.10.0-develop.1",
|
47
47
|
"rxjs": "^6.5.3 || ^7.0.0"
|
48
48
|
},
|
49
49
|
"dependencies": {
|
50
50
|
"tslib": "^2.3.1",
|
51
|
-
"@progress/kendo-angular-schematics": "16.
|
51
|
+
"@progress/kendo-angular-schematics": "16.10.0-develop.1",
|
52
52
|
"@progress/kendo-common": "^0.2.0",
|
53
53
|
"@progress/kendo-file-saver": "^1.0.0"
|
54
54
|
},
|
@@ -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': '16.
|
7
|
+
'@progress/kendo-angular-treeview': '16.10.0-develop.1',
|
8
8
|
// peer dependency of kendo-angular-inputs
|
9
|
-
'@progress/kendo-angular-dialog': '16.
|
9
|
+
'@progress/kendo-angular-dialog': '16.10.0-develop.1',
|
10
10
|
// peer dependency of kendo-angular-icons
|
11
11
|
'@progress/kendo-svg-icons': '^3.0.0',
|
12
12
|
// peer dependency of kendo-angular-dateinputs
|
13
|
-
'@progress/kendo-angular-navigation': '16.
|
13
|
+
'@progress/kendo-angular-navigation': '16.10.0-develop.1',
|
14
14
|
} });
|
15
15
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
16
16
|
}
|