@progress/kendo-angular-treeview 16.5.0 → 16.6.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/check.directive.d.ts +1 -1
- package/directives.d.ts +23 -0
- package/disable.directive.d.ts +1 -1
- package/drag-and-drop/drag-and-drop-editing.directive.d.ts +1 -1
- package/drag-and-drop/drag-and-drop.directive.d.ts +1 -1
- package/drag-and-drop/drag-clue/drag-clue-template.directive.d.ts +1 -1
- package/drag-and-drop/drag-clue/drag-clue.component.d.ts +1 -1
- package/drag-and-drop/drop-hint/drop-hint-template.directive.d.ts +1 -1
- package/drag-and-drop/drop-hint/drop-hint.component.d.ts +1 -1
- package/esm2020/check.directive.mjs +5 -2
- package/esm2020/directives.mjs +39 -0
- package/esm2020/disable.directive.mjs +5 -2
- package/esm2020/drag-and-drop/drag-and-drop-editing.directive.mjs +3 -2
- package/esm2020/drag-and-drop/drag-and-drop.directive.mjs +3 -2
- package/esm2020/drag-and-drop/drag-clue/drag-clue-template.directive.mjs +3 -2
- package/esm2020/drag-and-drop/drag-clue/drag-clue.component.mjs +7 -5
- package/esm2020/drag-and-drop/drop-hint/drop-hint-template.directive.mjs +3 -2
- package/esm2020/drag-and-drop/drop-hint/drop-hint.component.mjs +6 -4
- package/esm2020/expand.directive.mjs +5 -2
- package/esm2020/flat-binding.directive.mjs +5 -2
- package/esm2020/hierarchy-binding.directive.mjs +5 -2
- package/esm2020/index.mjs +1 -0
- package/esm2020/load-more/load-more-button-template.directive.mjs +3 -2
- package/esm2020/load-more/load-more.directive.mjs +3 -2
- package/esm2020/loading-indicator.directive.mjs +5 -2
- package/esm2020/localization/custom-messages.component.mjs +3 -2
- package/esm2020/localization/localized-messages.directive.mjs +3 -2
- package/esm2020/node-template.directive.mjs +3 -2
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/selection/select.directive.mjs +5 -2
- package/esm2020/treeview-group.component.mjs +11 -9
- package/esm2020/treeview-item-content.directive.mjs +5 -2
- package/esm2020/treeview-item.directive.mjs +5 -2
- package/esm2020/treeview.component.mjs +10 -9
- package/esm2020/treeview.module.mjs +42 -54
- package/expand.directive.d.ts +1 -1
- package/fesm2015/progress-kendo-angular-treeview.mjs +1326 -1372
- package/fesm2020/progress-kendo-angular-treeview.mjs +1174 -1220
- package/flat-binding.directive.d.ts +1 -1
- package/hierarchy-binding.directive.d.ts +1 -1
- package/index.d.ts +1 -0
- package/load-more/load-more-button-template.directive.d.ts +1 -1
- package/load-more/load-more.directive.d.ts +1 -1
- package/loading-indicator.directive.d.ts +1 -1
- package/localization/custom-messages.component.d.ts +1 -1
- package/localization/localized-messages.directive.d.ts +1 -1
- package/node-template.directive.d.ts +1 -1
- package/package.json +6 -6
- package/schematics/ngAdd/index.js +4 -4
- package/selection/select.directive.d.ts +1 -1
- package/treeview-group.component.d.ts +1 -1
- package/treeview-item-content.directive.d.ts +1 -1
- package/treeview-item.directive.d.ts +1 -1
- package/treeview.component.d.ts +1 -1
- package/treeview.module.d.ts +16 -18
- package/esm2020/shared.module.mjs +0 -125
- package/shared.module.d.ts +0 -38
package/check.directive.d.ts
CHANGED
|
@@ -69,5 +69,5 @@ export declare class CheckDirective implements OnChanges, OnDestroy {
|
|
|
69
69
|
private notify;
|
|
70
70
|
private addCheckedItemsChildren;
|
|
71
71
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckDirective, never>;
|
|
72
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<CheckDirective, "[kendoTreeViewCheckable]", never, { "isChecked": "isChecked"; "checkKey": "checkBy"; "checkedKeys": "checkedKeys"; "checkable": "kendoTreeViewCheckable"; }, { "checkedKeysChange": "checkedKeysChange"; }, never, never,
|
|
72
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CheckDirective, "[kendoTreeViewCheckable]", never, { "isChecked": "isChecked"; "checkKey": "checkBy"; "checkedKeys": "checkedKeys"; "checkable": "kendoTreeViewCheckable"; }, { "checkedKeysChange": "checkedKeysChange"; }, never, never, true, never>;
|
|
73
73
|
}
|
package/directives.d.ts
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { CheckDirective } from "./check.directive";
|
|
6
|
+
import { DisableDirective } from "./disable.directive";
|
|
7
|
+
import { DragAndDropEditingDirective } from "./drag-and-drop/drag-and-drop-editing.directive";
|
|
8
|
+
import { DragAndDropDirective } from "./drag-and-drop/drag-and-drop.directive";
|
|
9
|
+
import { DragClueTemplateDirective } from "./drag-and-drop/drag-clue/drag-clue-template.directive";
|
|
10
|
+
import { DropHintTemplateDirective } from "./drag-and-drop/drop-hint/drop-hint-template.directive";
|
|
11
|
+
import { ExpandDirective } from "./expand.directive";
|
|
12
|
+
import { FlatDataBindingDirective } from "./flat-binding.directive";
|
|
13
|
+
import { HierarchyBindingDirective } from "./hierarchy-binding.directive";
|
|
14
|
+
import { LoadMoreButtonTemplateDirective } from "./load-more/load-more-button-template.directive";
|
|
15
|
+
import { LoadMoreDirective } from "./load-more/load-more.directive";
|
|
16
|
+
import { CustomMessagesComponent } from "./localization/custom-messages.component";
|
|
17
|
+
import { NodeTemplateDirective } from "./node-template.directive";
|
|
18
|
+
import { SelectDirective } from "./selection/select.directive";
|
|
19
|
+
import { TreeViewComponent } from "./treeview.component";
|
|
20
|
+
/**
|
|
21
|
+
* Utility array that contains all `@progress/kendo-angular-treeview` related components and directives
|
|
22
|
+
*/
|
|
23
|
+
export declare const KENDO_TREEVIEW: readonly [typeof TreeViewComponent, typeof NodeTemplateDirective, typeof CheckDirective, typeof DisableDirective, typeof ExpandDirective, typeof SelectDirective, typeof HierarchyBindingDirective, typeof FlatDataBindingDirective, typeof DragAndDropDirective, typeof DragClueTemplateDirective, typeof DropHintTemplateDirective, typeof DragAndDropEditingDirective, typeof LoadMoreDirective, typeof LoadMoreButtonTemplateDirective, typeof CustomMessagesComponent];
|
package/disable.directive.d.ts
CHANGED
|
@@ -29,5 +29,5 @@ export declare class DisableDirective implements OnChanges {
|
|
|
29
29
|
ngOnChanges(changes?: any): void;
|
|
30
30
|
protected itemKey(e: any): any;
|
|
31
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<DisableDirective, never>;
|
|
32
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DisableDirective, "[kendoTreeViewDisable]", never, { "isDisabled": "isDisabled"; "disableKey": "kendoTreeViewDisable"; "disabledKeys": "disabledKeys"; }, {}, never, never,
|
|
32
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DisableDirective, "[kendoTreeViewDisable]", never, { "isDisabled": "isDisabled"; "disableKey": "kendoTreeViewDisable"; "disabledKeys": "disabledKeys"; }, {}, never, never, true, never>;
|
|
33
33
|
}
|
|
@@ -28,5 +28,5 @@ export declare class DragAndDropEditingDirective implements OnDestroy {
|
|
|
28
28
|
private handleAdd;
|
|
29
29
|
private handleRemove;
|
|
30
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<DragAndDropEditingDirective, never>;
|
|
31
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DragAndDropEditingDirective, "[kendoTreeViewDragAndDropEditing]", never, { "editService": "editService"; }, {}, never, never,
|
|
31
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DragAndDropEditingDirective, "[kendoTreeViewDragAndDropEditing]", never, { "editService": "editService"; }, {}, never, never, true, never>;
|
|
32
32
|
}
|
|
@@ -113,5 +113,5 @@ export declare class DragAndDropDirective implements AfterContentInit, OnDestroy
|
|
|
113
113
|
private shouldInitiateDragStart;
|
|
114
114
|
private initiateDragStart;
|
|
115
115
|
static ɵfac: i0.ɵɵFactoryDeclaration<DragAndDropDirective, never>;
|
|
116
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DragAndDropDirective, "[kendoTreeViewDragAndDrop]", never, { "allowCopy": "allowCopy"; "dropZoneTreeViews": "dropZoneTreeViews"; "startDragAfter": "startDragAfter"; "autoScroll": "autoScroll"; }, {}, ["dragClueTemplate", "dropHintTemplate"], never,
|
|
116
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DragAndDropDirective, "[kendoTreeViewDragAndDrop]", never, { "allowCopy": "allowCopy"; "dropZoneTreeViews": "dropZoneTreeViews"; "startDragAfter": "startDragAfter"; "autoScroll": "autoScroll"; }, {}, ["dragClueTemplate", "dropHintTemplate"], never, true, never>;
|
|
117
117
|
}
|
|
@@ -22,5 +22,5 @@ export declare class DragClueTemplateDirective {
|
|
|
22
22
|
templateRef: TemplateRef<any>;
|
|
23
23
|
constructor(templateRef: TemplateRef<any>);
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<DragClueTemplateDirective, [{ optional: true; }]>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DragClueTemplateDirective, "[kendoTreeViewDragClueTemplate]", never, {}, {}, never, never,
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DragClueTemplateDirective, "[kendoTreeViewDragClueTemplate]", never, {}, {}, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -39,5 +39,5 @@ export declare class DragClueComponent {
|
|
|
39
39
|
constructor(cdr: ChangeDetectorRef);
|
|
40
40
|
detectChanges(): void;
|
|
41
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<DragClueComponent, never>;
|
|
42
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DragClueComponent, "kendo-treeview-drag-clue", never, {}, {}, never, never,
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DragClueComponent, "kendo-treeview-drag-clue", never, {}, {}, never, never, true, never>;
|
|
43
43
|
}
|
|
@@ -19,5 +19,5 @@ export declare class DropHintTemplateDirective {
|
|
|
19
19
|
templateRef: TemplateRef<any>;
|
|
20
20
|
constructor(templateRef: TemplateRef<any>);
|
|
21
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropHintTemplateDirective, [{ optional: true; }]>;
|
|
22
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DropHintTemplateDirective, "[kendoTreeViewDropHintTemplate]", never, {}, {}, never, never,
|
|
22
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DropHintTemplateDirective, "[kendoTreeViewDropHintTemplate]", never, {}, {}, never, never, true, never>;
|
|
23
23
|
}
|
|
@@ -33,5 +33,5 @@ export declare class DropHintComponent {
|
|
|
33
33
|
constructor(changeDetectorRef: ChangeDetectorRef);
|
|
34
34
|
detectChanges(): void;
|
|
35
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropHintComponent, never>;
|
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DropHintComponent, "kendo-treeview-drop-hint", never, {}, {}, never, never,
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropHintComponent, "kendo-treeview-drop-hint", never, {}, {}, never, never, true, never>;
|
|
37
37
|
}
|
|
@@ -277,10 +277,13 @@ export class CheckDirective {
|
|
|
277
277
|
}
|
|
278
278
|
}
|
|
279
279
|
CheckDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CheckDirective, deps: [{ token: i1.TreeViewComponent }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
280
|
-
CheckDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: CheckDirective, selector: "[kendoTreeViewCheckable]", inputs: { isChecked: "isChecked", checkKey: ["checkBy", "checkKey"], checkedKeys: "checkedKeys", checkable: ["kendoTreeViewCheckable", "checkable"] }, outputs: { checkedKeysChange: "checkedKeysChange" }, usesOnChanges: true, ngImport: i0 });
|
|
280
|
+
CheckDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: CheckDirective, isStandalone: true, selector: "[kendoTreeViewCheckable]", inputs: { isChecked: "isChecked", checkKey: ["checkBy", "checkKey"], checkedKeys: "checkedKeys", checkable: ["kendoTreeViewCheckable", "checkable"] }, outputs: { checkedKeysChange: "checkedKeysChange" }, usesOnChanges: true, ngImport: i0 });
|
|
281
281
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CheckDirective, decorators: [{
|
|
282
282
|
type: Directive,
|
|
283
|
-
args: [{
|
|
283
|
+
args: [{
|
|
284
|
+
selector: '[kendoTreeViewCheckable]',
|
|
285
|
+
standalone: true
|
|
286
|
+
}]
|
|
284
287
|
}], ctorParameters: function () { return [{ type: i1.TreeViewComponent }, { type: i0.NgZone }]; }, propDecorators: { isChecked: [{
|
|
285
288
|
type: Input
|
|
286
289
|
}], checkKey: [{
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { CheckDirective } from "./check.directive";
|
|
6
|
+
import { DisableDirective } from "./disable.directive";
|
|
7
|
+
import { DragAndDropEditingDirective } from "./drag-and-drop/drag-and-drop-editing.directive";
|
|
8
|
+
import { DragAndDropDirective } from "./drag-and-drop/drag-and-drop.directive";
|
|
9
|
+
import { DragClueTemplateDirective } from "./drag-and-drop/drag-clue/drag-clue-template.directive";
|
|
10
|
+
import { DropHintTemplateDirective } from "./drag-and-drop/drop-hint/drop-hint-template.directive";
|
|
11
|
+
import { ExpandDirective } from "./expand.directive";
|
|
12
|
+
import { FlatDataBindingDirective } from "./flat-binding.directive";
|
|
13
|
+
import { HierarchyBindingDirective } from "./hierarchy-binding.directive";
|
|
14
|
+
import { LoadMoreButtonTemplateDirective } from "./load-more/load-more-button-template.directive";
|
|
15
|
+
import { LoadMoreDirective } from "./load-more/load-more.directive";
|
|
16
|
+
import { CustomMessagesComponent } from "./localization/custom-messages.component";
|
|
17
|
+
import { NodeTemplateDirective } from "./node-template.directive";
|
|
18
|
+
import { SelectDirective } from "./selection/select.directive";
|
|
19
|
+
import { TreeViewComponent } from "./treeview.component";
|
|
20
|
+
/**
|
|
21
|
+
* Utility array that contains all `@progress/kendo-angular-treeview` related components and directives
|
|
22
|
+
*/
|
|
23
|
+
export const KENDO_TREEVIEW = [
|
|
24
|
+
TreeViewComponent,
|
|
25
|
+
NodeTemplateDirective,
|
|
26
|
+
CheckDirective,
|
|
27
|
+
DisableDirective,
|
|
28
|
+
ExpandDirective,
|
|
29
|
+
SelectDirective,
|
|
30
|
+
HierarchyBindingDirective,
|
|
31
|
+
FlatDataBindingDirective,
|
|
32
|
+
DragAndDropDirective,
|
|
33
|
+
DragClueTemplateDirective,
|
|
34
|
+
DropHintTemplateDirective,
|
|
35
|
+
DragAndDropEditingDirective,
|
|
36
|
+
LoadMoreDirective,
|
|
37
|
+
LoadMoreButtonTemplateDirective,
|
|
38
|
+
CustomMessagesComponent
|
|
39
|
+
];
|
|
@@ -45,10 +45,13 @@ export class DisableDirective {
|
|
|
45
45
|
}
|
|
46
46
|
}
|
|
47
47
|
DisableDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DisableDirective, deps: [{ token: i1.TreeViewComponent }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
48
|
-
DisableDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DisableDirective, selector: "[kendoTreeViewDisable]", inputs: { isDisabled: "isDisabled", disableKey: ["kendoTreeViewDisable", "disableKey"], disabledKeys: "disabledKeys" }, usesOnChanges: true, ngImport: i0 });
|
|
48
|
+
DisableDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DisableDirective, isStandalone: true, selector: "[kendoTreeViewDisable]", inputs: { isDisabled: "isDisabled", disableKey: ["kendoTreeViewDisable", "disableKey"], disabledKeys: "disabledKeys" }, usesOnChanges: true, ngImport: i0 });
|
|
49
49
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DisableDirective, decorators: [{
|
|
50
50
|
type: Directive,
|
|
51
|
-
args: [{
|
|
51
|
+
args: [{
|
|
52
|
+
selector: '[kendoTreeViewDisable]',
|
|
53
|
+
standalone: true
|
|
54
|
+
}]
|
|
52
55
|
}], ctorParameters: function () { return [{ type: i1.TreeViewComponent }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { isDisabled: [{
|
|
53
56
|
type: Input
|
|
54
57
|
}], disableKey: [{
|
|
@@ -48,11 +48,12 @@ export class DragAndDropEditingDirective {
|
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
DragAndDropEditingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DragAndDropEditingDirective, deps: [{ token: i1.TreeViewComponent }], target: i0.ɵɵFactoryTarget.Directive });
|
|
51
|
-
DragAndDropEditingDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DragAndDropEditingDirective, selector: "[kendoTreeViewDragAndDropEditing]", inputs: { editService: "editService" }, ngImport: i0 });
|
|
51
|
+
DragAndDropEditingDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DragAndDropEditingDirective, isStandalone: true, selector: "[kendoTreeViewDragAndDropEditing]", inputs: { editService: "editService" }, ngImport: i0 });
|
|
52
52
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DragAndDropEditingDirective, decorators: [{
|
|
53
53
|
type: Directive,
|
|
54
54
|
args: [{
|
|
55
|
-
selector: '[kendoTreeViewDragAndDropEditing]'
|
|
55
|
+
selector: '[kendoTreeViewDragAndDropEditing]',
|
|
56
|
+
standalone: true
|
|
56
57
|
}]
|
|
57
58
|
}], ctorParameters: function () { return [{ type: i1.TreeViewComponent }]; }, propDecorators: { editService: [{
|
|
58
59
|
type: Input
|
|
@@ -272,7 +272,7 @@ export class DragAndDropDirective {
|
|
|
272
272
|
}
|
|
273
273
|
}
|
|
274
274
|
DragAndDropDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DragAndDropDirective, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: i1.TreeViewComponent }, { token: i2.DragClueService }, { token: i3.DropHintService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
275
|
-
DragAndDropDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DragAndDropDirective, selector: "[kendoTreeViewDragAndDrop]", inputs: { allowCopy: "allowCopy", dropZoneTreeViews: "dropZoneTreeViews", startDragAfter: "startDragAfter", autoScroll: "autoScroll" }, host: { properties: { "style.user-select": "this.userSelectStyle", "style.-ms-user-select": "this.userSelectStyle", "style.-moz-user-select": "this.userSelectStyle", "style.-webkit-user-select": "this.userSelectStyle" } }, providers: [
|
|
275
|
+
DragAndDropDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DragAndDropDirective, isStandalone: true, selector: "[kendoTreeViewDragAndDrop]", inputs: { allowCopy: "allowCopy", dropZoneTreeViews: "dropZoneTreeViews", startDragAfter: "startDragAfter", autoScroll: "autoScroll" }, host: { properties: { "style.user-select": "this.userSelectStyle", "style.-ms-user-select": "this.userSelectStyle", "style.-moz-user-select": "this.userSelectStyle", "style.-webkit-user-select": "this.userSelectStyle" } }, providers: [
|
|
276
276
|
DragClueService,
|
|
277
277
|
DropHintService
|
|
278
278
|
], queries: [{ propertyName: "dragClueTemplate", first: true, predicate: DragClueTemplateDirective, descendants: true }, { propertyName: "dropHintTemplate", first: true, predicate: DropHintTemplateDirective, descendants: true }], ngImport: i0 });
|
|
@@ -283,7 +283,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
283
283
|
providers: [
|
|
284
284
|
DragClueService,
|
|
285
285
|
DropHintService
|
|
286
|
-
]
|
|
286
|
+
],
|
|
287
|
+
standalone: true
|
|
287
288
|
}]
|
|
288
289
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.NgZone }, { type: i1.TreeViewComponent }, { type: i2.DragClueService }, { type: i3.DropHintService }]; }, propDecorators: { allowCopy: [{
|
|
289
290
|
type: Input
|
|
@@ -24,11 +24,12 @@ export class DragClueTemplateDirective {
|
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
DragClueTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DragClueTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
27
|
-
DragClueTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DragClueTemplateDirective, selector: "[kendoTreeViewDragClueTemplate]", ngImport: i0 });
|
|
27
|
+
DragClueTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DragClueTemplateDirective, isStandalone: true, selector: "[kendoTreeViewDragClueTemplate]", ngImport: i0 });
|
|
28
28
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DragClueTemplateDirective, decorators: [{
|
|
29
29
|
type: Directive,
|
|
30
30
|
args: [{
|
|
31
|
-
selector: '[kendoTreeViewDragClueTemplate]'
|
|
31
|
+
selector: '[kendoTreeViewDragClueTemplate]',
|
|
32
|
+
standalone: true
|
|
32
33
|
}]
|
|
33
34
|
}], ctorParameters: function () { return [{ type: i0.TemplateRef, decorators: [{
|
|
34
35
|
type: Optional
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
import { Component, HostBinding, ChangeDetectorRef, ChangeDetectionStrategy } from "@angular/core";
|
|
6
6
|
import { DropAction } from '../models';
|
|
7
7
|
import { cancelIcon, insertBottomIcon, insertMiddleIcon, insertTopIcon, plusIcon } from "@progress/kendo-svg-icons";
|
|
8
|
+
import { NgIf, NgTemplateOutlet } from "@angular/common";
|
|
9
|
+
import { IconWrapperComponent } from "@progress/kendo-angular-icons";
|
|
8
10
|
import * as i0 from "@angular/core";
|
|
9
|
-
import * as i1 from "@angular/common";
|
|
10
|
-
import * as i2 from "@progress/kendo-angular-icons";
|
|
11
11
|
/**
|
|
12
12
|
* @hidden
|
|
13
13
|
*/
|
|
@@ -43,7 +43,7 @@ export class DragClueComponent {
|
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
DragClueComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DragClueComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
46
|
-
DragClueComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DragClueComponent, selector: "kendo-treeview-drag-clue", host: { properties: { "class.k-header": "this.hostClasses", "class.k-drag-clue": "this.hostClasses", "style.position": "this.posistionStyle" } }, ngImport: i0, template: `
|
|
46
|
+
DragClueComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DragClueComponent, isStandalone: true, selector: "kendo-treeview-drag-clue", host: { properties: { "class.k-header": "this.hostClasses", "class.k-drag-clue": "this.hostClasses", "style.position": "this.posistionStyle" } }, ngImport: i0, template: `
|
|
47
47
|
<ng-container *ngIf="!template">
|
|
48
48
|
<kendo-icon-wrapper
|
|
49
49
|
innerCssClass="k-drag-status"
|
|
@@ -65,7 +65,7 @@ DragClueComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", vers
|
|
|
65
65
|
}"
|
|
66
66
|
>
|
|
67
67
|
</ng-template>
|
|
68
|
-
`, isInline: true, dependencies: [{ kind: "directive", type:
|
|
68
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
69
69
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DragClueComponent, decorators: [{
|
|
70
70
|
type: Component,
|
|
71
71
|
args: [{
|
|
@@ -93,7 +93,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
93
93
|
}"
|
|
94
94
|
>
|
|
95
95
|
</ng-template>
|
|
96
|
-
|
|
96
|
+
`,
|
|
97
|
+
standalone: true,
|
|
98
|
+
imports: [NgIf, IconWrapperComponent, NgTemplateOutlet]
|
|
97
99
|
}]
|
|
98
100
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { hostClasses: [{
|
|
99
101
|
type: HostBinding,
|
|
@@ -21,11 +21,12 @@ export class DropHintTemplateDirective {
|
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
DropHintTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DropHintTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
24
|
-
DropHintTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DropHintTemplateDirective, selector: "[kendoTreeViewDropHintTemplate]", ngImport: i0 });
|
|
24
|
+
DropHintTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DropHintTemplateDirective, isStandalone: true, selector: "[kendoTreeViewDropHintTemplate]", ngImport: i0 });
|
|
25
25
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DropHintTemplateDirective, decorators: [{
|
|
26
26
|
type: Directive,
|
|
27
27
|
args: [{
|
|
28
|
-
selector: '[kendoTreeViewDropHintTemplate]'
|
|
28
|
+
selector: '[kendoTreeViewDropHintTemplate]',
|
|
29
|
+
standalone: true
|
|
29
30
|
}]
|
|
30
31
|
}], ctorParameters: function () { return [{ type: i0.TemplateRef, decorators: [{
|
|
31
32
|
type: Optional
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { Component, HostBinding, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core';
|
|
6
|
+
import { NgIf, NgTemplateOutlet } from '@angular/common';
|
|
6
7
|
import * as i0 from "@angular/core";
|
|
7
|
-
import * as i1 from "@angular/common";
|
|
8
8
|
/**
|
|
9
9
|
* @hidden
|
|
10
10
|
*/
|
|
@@ -21,7 +21,7 @@ export class DropHintComponent {
|
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
DropHintComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DropHintComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
24
|
-
DropHintComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DropHintComponent, selector: "kendo-treeview-drop-hint", host: { properties: { "class.k-drop-hint-container": "this.hostClass", "style.position": "this.position", "style.pointer-events": "this.pointerEvents" } }, ngImport: i0, template: `
|
|
24
|
+
DropHintComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DropHintComponent, isStandalone: true, selector: "kendo-treeview-drop-hint", host: { properties: { "class.k-drop-hint-container": "this.hostClass", "style.position": "this.position", "style.pointer-events": "this.pointerEvents" } }, ngImport: i0, template: `
|
|
25
25
|
<div
|
|
26
26
|
*ngIf="!template"
|
|
27
27
|
class="k-drop-hint k-drop-hint-h"
|
|
@@ -40,7 +40,7 @@ DropHintComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", vers
|
|
|
40
40
|
}"
|
|
41
41
|
>
|
|
42
42
|
<ng-template>
|
|
43
|
-
`, isInline: true, dependencies: [{ kind: "directive", type:
|
|
43
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
44
44
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DropHintComponent, decorators: [{
|
|
45
45
|
type: Component,
|
|
46
46
|
args: [{
|
|
@@ -65,7 +65,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
65
65
|
}"
|
|
66
66
|
>
|
|
67
67
|
<ng-template>
|
|
68
|
-
|
|
68
|
+
`,
|
|
69
|
+
standalone: true,
|
|
70
|
+
imports: [NgIf, NgTemplateOutlet]
|
|
69
71
|
}]
|
|
70
72
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { hostClass: [{
|
|
71
73
|
type: HostBinding,
|
|
@@ -178,10 +178,13 @@ export class ExpandDirective {
|
|
|
178
178
|
}
|
|
179
179
|
}
|
|
180
180
|
ExpandDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ExpandDirective, deps: [{ token: i1.ExpandableComponent }], target: i0.ɵɵFactoryTarget.Directive });
|
|
181
|
-
ExpandDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ExpandDirective, selector: "[kendoTreeViewExpandable]", inputs: { isExpanded: "isExpanded", expandKey: ["expandBy", "expandKey"], expandOnFilter: "expandOnFilter", expandedKeys: "expandedKeys" }, outputs: { expandedKeysChange: "expandedKeysChange" }, usesOnChanges: true, ngImport: i0 });
|
|
181
|
+
ExpandDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ExpandDirective, isStandalone: true, selector: "[kendoTreeViewExpandable]", inputs: { isExpanded: "isExpanded", expandKey: ["expandBy", "expandKey"], expandOnFilter: "expandOnFilter", expandedKeys: "expandedKeys" }, outputs: { expandedKeysChange: "expandedKeysChange" }, usesOnChanges: true, ngImport: i0 });
|
|
182
182
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ExpandDirective, decorators: [{
|
|
183
183
|
type: Directive,
|
|
184
|
-
args: [{
|
|
184
|
+
args: [{
|
|
185
|
+
selector: '[kendoTreeViewExpandable]',
|
|
186
|
+
standalone: true
|
|
187
|
+
}]
|
|
185
188
|
}], ctorParameters: function () { return [{ type: i1.ExpandableComponent }]; }, propDecorators: { isExpanded: [{
|
|
186
189
|
type: Input
|
|
187
190
|
}], expandKey: [{
|
|
@@ -107,10 +107,13 @@ export class FlatDataBindingDirective extends FilteringBase {
|
|
|
107
107
|
}
|
|
108
108
|
}
|
|
109
109
|
FlatDataBindingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FlatDataBindingDirective, deps: [{ token: i1.DataBoundComponent }], target: i0.ɵɵFactoryTarget.Directive });
|
|
110
|
-
FlatDataBindingDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: FlatDataBindingDirective, selector: "[kendoTreeViewFlatDataBinding]", inputs: { nodes: "nodes", parentIdField: "parentIdField", idField: "idField", loadOnDemand: "loadOnDemand", isVisible: "isVisible" }, usesInheritance: true, usesOnChanges: true, ngImport: i0 });
|
|
110
|
+
FlatDataBindingDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: FlatDataBindingDirective, isStandalone: true, selector: "[kendoTreeViewFlatDataBinding]", inputs: { nodes: "nodes", parentIdField: "parentIdField", idField: "idField", loadOnDemand: "loadOnDemand", isVisible: "isVisible" }, usesInheritance: true, usesOnChanges: true, ngImport: i0 });
|
|
111
111
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FlatDataBindingDirective, decorators: [{
|
|
112
112
|
type: Directive,
|
|
113
|
-
args: [{
|
|
113
|
+
args: [{
|
|
114
|
+
selector: "[kendoTreeViewFlatDataBinding]",
|
|
115
|
+
standalone: true
|
|
116
|
+
}]
|
|
114
117
|
}], ctorParameters: function () { return [{ type: i1.DataBoundComponent }]; }, propDecorators: { nodes: [{
|
|
115
118
|
type: Input
|
|
116
119
|
}], parentIdField: [{
|
|
@@ -111,10 +111,13 @@ export class HierarchyBindingDirective extends FilteringBase {
|
|
|
111
111
|
}
|
|
112
112
|
}
|
|
113
113
|
HierarchyBindingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HierarchyBindingDirective, deps: [{ token: i1.DataBoundComponent }, { token: i2.DragAndDropDirective, host: true, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
114
|
-
HierarchyBindingDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: HierarchyBindingDirective, selector: "[kendoTreeViewHierarchyBinding]", inputs: { childrenField: "childrenField", nodes: "nodes", isVisible: "isVisible", loadOnDemand: "loadOnDemand" }, usesInheritance: true, usesOnChanges: true, ngImport: i0 });
|
|
114
|
+
HierarchyBindingDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: HierarchyBindingDirective, isStandalone: true, selector: "[kendoTreeViewHierarchyBinding]", inputs: { childrenField: "childrenField", nodes: "nodes", isVisible: "isVisible", loadOnDemand: "loadOnDemand" }, usesInheritance: true, usesOnChanges: true, ngImport: i0 });
|
|
115
115
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HierarchyBindingDirective, decorators: [{
|
|
116
116
|
type: Directive,
|
|
117
|
-
args: [{
|
|
117
|
+
args: [{
|
|
118
|
+
selector: '[kendoTreeViewHierarchyBinding]',
|
|
119
|
+
standalone: true
|
|
120
|
+
}]
|
|
118
121
|
}], ctorParameters: function () { return [{ type: i1.DataBoundComponent }, { type: i2.DragAndDropDirective, decorators: [{
|
|
119
122
|
type: Optional
|
|
120
123
|
}, {
|
package/esm2020/index.mjs
CHANGED
|
@@ -28,3 +28,4 @@ export { LoadMoreDirective } from './load-more/load-more.directive';
|
|
|
28
28
|
export { LoadMoreButtonTemplateDirective } from './load-more/load-more-button-template.directive';
|
|
29
29
|
export { CustomMessagesComponent } from './localization/custom-messages.component';
|
|
30
30
|
export { LocalizedMessagesDirective } from "./localization/localized-messages.directive";
|
|
31
|
+
export * from './directives';
|
|
@@ -20,11 +20,12 @@ export class LoadMoreButtonTemplateDirective {
|
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
LoadMoreButtonTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoadMoreButtonTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
23
|
-
LoadMoreButtonTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: LoadMoreButtonTemplateDirective, selector: "[kendoTreeViewLoadMoreButtonTemplate]", ngImport: i0 });
|
|
23
|
+
LoadMoreButtonTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: LoadMoreButtonTemplateDirective, isStandalone: true, selector: "[kendoTreeViewLoadMoreButtonTemplate]", ngImport: i0 });
|
|
24
24
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoadMoreButtonTemplateDirective, decorators: [{
|
|
25
25
|
type: Directive,
|
|
26
26
|
args: [{
|
|
27
|
-
selector: '[kendoTreeViewLoadMoreButtonTemplate]'
|
|
27
|
+
selector: '[kendoTreeViewLoadMoreButtonTemplate]',
|
|
28
|
+
standalone: true
|
|
28
29
|
}]
|
|
29
30
|
}], ctorParameters: function () { return [{ type: i0.TemplateRef, decorators: [{
|
|
30
31
|
type: Optional
|
|
@@ -85,11 +85,12 @@ export class LoadMoreDirective {
|
|
|
85
85
|
}
|
|
86
86
|
}
|
|
87
87
|
LoadMoreDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoadMoreDirective, deps: [{ token: i1.TreeViewComponent }], target: i0.ɵɵFactoryTarget.Directive });
|
|
88
|
-
LoadMoreDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: LoadMoreDirective, selector: "[kendoTreeViewLoadMore]", inputs: { loadMoreNodes: ["kendoTreeViewLoadMore", "loadMoreNodes"], pageSize: "pageSize", totalRootNodes: "totalRootNodes", totalField: "totalField" }, usesOnChanges: true, ngImport: i0 });
|
|
88
|
+
LoadMoreDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: LoadMoreDirective, isStandalone: true, selector: "[kendoTreeViewLoadMore]", inputs: { loadMoreNodes: ["kendoTreeViewLoadMore", "loadMoreNodes"], pageSize: "pageSize", totalRootNodes: "totalRootNodes", totalField: "totalField" }, usesOnChanges: true, ngImport: i0 });
|
|
89
89
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoadMoreDirective, decorators: [{
|
|
90
90
|
type: Directive,
|
|
91
91
|
args: [{
|
|
92
|
-
selector: '[kendoTreeViewLoadMore]'
|
|
92
|
+
selector: '[kendoTreeViewLoadMore]',
|
|
93
|
+
standalone: true
|
|
93
94
|
}]
|
|
94
95
|
}], ctorParameters: function () { return [{ type: i1.TreeViewComponent }]; }, propDecorators: { loadMoreNodes: [{
|
|
95
96
|
type: Input,
|
|
@@ -48,10 +48,13 @@ export class LoadingIndicatorDirective {
|
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
LoadingIndicatorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoadingIndicatorDirective, deps: [{ token: i1.ExpandStateService }, { token: i2.LoadingNotificationService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
51
|
-
LoadingIndicatorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: LoadingIndicatorDirective, selector: "[kendoTreeViewLoading]", inputs: { index: ["kendoTreeViewLoading", "index"] }, host: { properties: { "class.k-i-loading": "this.loading" } }, ngImport: i0 });
|
|
51
|
+
LoadingIndicatorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: LoadingIndicatorDirective, isStandalone: true, selector: "[kendoTreeViewLoading]", inputs: { index: ["kendoTreeViewLoading", "index"] }, host: { properties: { "class.k-i-loading": "this.loading" } }, ngImport: i0 });
|
|
52
52
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoadingIndicatorDirective, decorators: [{
|
|
53
53
|
type: Directive,
|
|
54
|
-
args: [{
|
|
54
|
+
args: [{
|
|
55
|
+
selector: '[kendoTreeViewLoading]',
|
|
56
|
+
standalone: true
|
|
57
|
+
}]
|
|
55
58
|
}], ctorParameters: function () { return [{ type: i1.ExpandStateService }, { type: i2.LoadingNotificationService }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { loading: [{
|
|
56
59
|
type: HostBinding,
|
|
57
60
|
args: ["class.k-i-loading"]
|
|
@@ -20,7 +20,7 @@ export class CustomMessagesComponent extends TreeViewMessages {
|
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
CustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CustomMessagesComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
23
|
-
CustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: CustomMessagesComponent, selector: "kendo-treeview-messages", providers: [
|
|
23
|
+
CustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: CustomMessagesComponent, isStandalone: true, selector: "kendo-treeview-messages", providers: [
|
|
24
24
|
{
|
|
25
25
|
provide: TreeViewMessages,
|
|
26
26
|
useExisting: forwardRef(() => CustomMessagesComponent)
|
|
@@ -36,6 +36,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
36
36
|
}
|
|
37
37
|
],
|
|
38
38
|
selector: 'kendo-treeview-messages',
|
|
39
|
-
template:
|
|
39
|
+
template: ``,
|
|
40
|
+
standalone: true
|
|
40
41
|
}]
|
|
41
42
|
}], ctorParameters: function () { return [{ type: i1.LocalizationService }]; } });
|
|
@@ -17,7 +17,7 @@ export class LocalizedMessagesDirective extends TreeViewMessages {
|
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
LocalizedMessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LocalizedMessagesDirective, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
20
|
-
LocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: LocalizedMessagesDirective, selector: "[kendoTreeViewLocalizedMessages]", providers: [
|
|
20
|
+
LocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: LocalizedMessagesDirective, isStandalone: true, selector: "[kendoTreeViewLocalizedMessages]", providers: [
|
|
21
21
|
{
|
|
22
22
|
provide: TreeViewMessages,
|
|
23
23
|
useExisting: forwardRef(() => LocalizedMessagesDirective)
|
|
@@ -32,6 +32,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
32
32
|
useExisting: forwardRef(() => LocalizedMessagesDirective)
|
|
33
33
|
}
|
|
34
34
|
],
|
|
35
|
-
selector: '[kendoTreeViewLocalizedMessages]'
|
|
35
|
+
selector: '[kendoTreeViewLocalizedMessages]',
|
|
36
|
+
standalone: true
|
|
36
37
|
}]
|
|
37
38
|
}], ctorParameters: function () { return [{ type: i1.LocalizationService }]; } });
|
|
@@ -64,11 +64,12 @@ export class NodeTemplateDirective {
|
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
66
|
NodeTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NodeTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
67
|
-
NodeTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: NodeTemplateDirective, selector: "[kendoTreeViewNodeTemplate]", ngImport: i0 });
|
|
67
|
+
NodeTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: NodeTemplateDirective, isStandalone: true, selector: "[kendoTreeViewNodeTemplate]", ngImport: i0 });
|
|
68
68
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NodeTemplateDirective, decorators: [{
|
|
69
69
|
type: Directive,
|
|
70
70
|
args: [{
|
|
71
|
-
selector: '[kendoTreeViewNodeTemplate]'
|
|
71
|
+
selector: '[kendoTreeViewNodeTemplate]',
|
|
72
|
+
standalone: true
|
|
72
73
|
}]
|
|
73
74
|
}], ctorParameters: function () { return [{ type: i0.TemplateRef, decorators: [{
|
|
74
75
|
type: Optional
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-treeview',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '16.
|
|
12
|
+
publishDate: 1721827712,
|
|
13
|
+
version: '16.6.0-develop.1',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -115,10 +115,13 @@ export class SelectDirective {
|
|
|
115
115
|
}
|
|
116
116
|
}
|
|
117
117
|
SelectDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SelectDirective, deps: [{ token: i1.TreeViewComponent }, { token: i2.NavigationService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
118
|
-
SelectDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: SelectDirective, selector: "[kendoTreeViewSelectable]", inputs: { isSelected: "isSelected", selectKey: ["selectBy", "selectKey"], selection: ["kendoTreeViewSelectable", "selection"], selectedKeys: "selectedKeys" }, outputs: { selectedKeysChange: "selectedKeysChange" }, host: { properties: { "attr.aria-multiselectable": "this.getAriaMultiselectable" } }, usesOnChanges: true, ngImport: i0 });
|
|
118
|
+
SelectDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: SelectDirective, isStandalone: true, selector: "[kendoTreeViewSelectable]", inputs: { isSelected: "isSelected", selectKey: ["selectBy", "selectKey"], selection: ["kendoTreeViewSelectable", "selection"], selectedKeys: "selectedKeys" }, outputs: { selectedKeysChange: "selectedKeysChange" }, host: { properties: { "attr.aria-multiselectable": "this.getAriaMultiselectable" } }, usesOnChanges: true, ngImport: i0 });
|
|
119
119
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SelectDirective, decorators: [{
|
|
120
120
|
type: Directive,
|
|
121
|
-
args: [{
|
|
121
|
+
args: [{
|
|
122
|
+
selector: '[kendoTreeViewSelectable]',
|
|
123
|
+
standalone: true
|
|
124
|
+
}]
|
|
122
125
|
}], ctorParameters: function () { return [{ type: i1.TreeViewComponent }, { type: i2.NavigationService }]; }, propDecorators: { isSelected: [{
|
|
123
126
|
type: Input
|
|
124
127
|
}], selectKey: [{
|