@progress/kendo-angular-treeview 19.1.2-develop.4 → 19.1.2-develop.5

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.
@@ -21,8 +21,11 @@ import * as i0 from "@angular/core";
21
21
  * checkBy="id"
22
22
  * [(checkedKeys)]="checkedKeys"
23
23
  * [nodes]="data">
24
- * </kendo-treeview
24
+ * </kendo-treeview>
25
25
  * ```
26
+ *
27
+ * @remarks
28
+ * Applied to: {@link TreeViewComponent}
26
29
  */
27
30
  export declare class CheckDirective implements OnChanges, OnDestroy {
28
31
  protected treeView: TreeViewComponent;
package/directives.d.ts CHANGED
@@ -18,7 +18,7 @@ import { NodeTemplateDirective } from "./node-template.directive";
18
18
  import { SelectDirective } from "./selection/select.directive";
19
19
  import { TreeViewComponent } from "./treeview.component";
20
20
  /**
21
- * Use the `KENDO_TREEVIEW ` utility array to add all `@progress/kendo-angular-treeview` related components and directives to a standalone Angular component.
21
+ * Use the `KENDO_TREEVIEW` utility array to add all `@progress/kendo-angular-treeview`-related components and directives to a standalone Angular component.
22
22
  *
23
23
  * @example
24
24
  * ```typescript
@@ -9,6 +9,21 @@ import * as i0 from "@angular/core";
9
9
  /**
10
10
  * Represents a directive which manages the disabled in-memory state of the TreeView node
11
11
  * ([see example]({% slug disabledstate_treeview %})).
12
+ *
13
+ * @example
14
+ * ```html
15
+ * <kendo-treeview
16
+ * [nodes]="data"
17
+ * textField="text"
18
+ * [hasChildren]="hasChildren"
19
+ * [children]="fetchChildren"
20
+ * kendoTreeViewDisable
21
+ * [disabledKeys]="disabledKeys">
22
+ * </kendo-treeview>
23
+ * ```
24
+ *
25
+ * @remarks
26
+ * Applied to: {@link TreeViewComponent}
12
27
  */
13
28
  export declare class DisableDirective implements OnChanges {
14
29
  protected treeView: TreeViewComponent;
@@ -26,6 +26,9 @@ import * as i0 from "@angular/core";
26
26
  * textField="text">
27
27
  * </kendo-treeview>
28
28
  * ```
29
+ *
30
+ * @remarks
31
+ * Applied to: {@link TreeViewComponent}
29
32
  */
30
33
  export declare class DragAndDropEditingDirective implements OnDestroy {
31
34
  private treeview;
@@ -31,6 +31,9 @@ import * as i0 from "@angular/core";
31
31
  * >
32
32
  * </kendo-treeview>
33
33
  * ```
34
+ *
35
+ * @remarks
36
+ * Applied to: {@link TreeViewComponent}
34
37
  */
35
38
  export declare class DragAndDropDirective implements AfterContentInit, OnDestroy {
36
39
  private element;
@@ -38,8 +38,11 @@ const matchKey = index => k => {
38
38
  * checkBy="id"
39
39
  * [(checkedKeys)]="checkedKeys"
40
40
  * [nodes]="data">
41
- * </kendo-treeview
41
+ * </kendo-treeview>
42
42
  * ```
43
+ *
44
+ * @remarks
45
+ * Applied to: {@link TreeViewComponent}
43
46
  */
44
47
  export class CheckDirective {
45
48
  treeView;
@@ -18,7 +18,7 @@ import { NodeTemplateDirective } from "./node-template.directive";
18
18
  import { SelectDirective } from "./selection/select.directive";
19
19
  import { TreeViewComponent } from "./treeview.component";
20
20
  /**
21
- * Use the `KENDO_TREEVIEW ` utility array to add all `@progress/kendo-angular-treeview` related components and directives to a standalone Angular component.
21
+ * Use the `KENDO_TREEVIEW` utility array to add all `@progress/kendo-angular-treeview`-related components and directives to a standalone Angular component.
22
22
  *
23
23
  * @example
24
24
  * ```typescript
@@ -9,6 +9,21 @@ import * as i1 from "./treeview.component";
9
9
  /**
10
10
  * Represents a directive which manages the disabled in-memory state of the TreeView node
11
11
  * ([see example]({% slug disabledstate_treeview %})).
12
+ *
13
+ * @example
14
+ * ```html
15
+ * <kendo-treeview
16
+ * [nodes]="data"
17
+ * textField="text"
18
+ * [hasChildren]="hasChildren"
19
+ * [children]="fetchChildren"
20
+ * kendoTreeViewDisable
21
+ * [disabledKeys]="disabledKeys">
22
+ * </kendo-treeview>
23
+ * ```
24
+ *
25
+ * @remarks
26
+ * Applied to: {@link TreeViewComponent}
12
27
  */
13
28
  export class DisableDirective {
14
29
  treeView;
@@ -28,6 +28,9 @@ import * as i1 from "../treeview.component";
28
28
  * textField="text">
29
29
  * </kendo-treeview>
30
30
  * ```
31
+ *
32
+ * @remarks
33
+ * Applied to: {@link TreeViewComponent}
31
34
  */
32
35
  export class DragAndDropEditingDirective {
33
36
  treeview;
@@ -42,6 +42,9 @@ const DEFAULT_SCROLL_SETTINGS = {
42
42
  * >
43
43
  * </kendo-treeview>
44
44
  * ```
45
+ *
46
+ * @remarks
47
+ * Applied to: {@link TreeViewComponent}
45
48
  */
46
49
  export class DragAndDropDirective {
47
50
  element;
@@ -29,6 +29,9 @@ const DEFAULT_FILTER_EXPAND_SETTINGS = {
29
29
  * [nodes]="data">
30
30
  * </kendo-treeview>
31
31
  * ```
32
+ *
33
+ * @remarks
34
+ * Applied to: {@link TreeViewComponent}
32
35
  */
33
36
  export class ExpandDirective {
34
37
  component;
@@ -49,6 +49,9 @@ const mapToTree = (currentLevelNodes, allNodes, parentIdField, idField, parent =
49
49
  * [filterable]="true">
50
50
  * </kendo-treeview>
51
51
  * ```
52
+ *
53
+ * @remarks
54
+ * Applied to: {@link TreeViewComponent}
52
55
  */
53
56
  export class FlatDataBindingDirective extends FilteringBase {
54
57
  component;
@@ -49,6 +49,9 @@ const mapToWrappers = (currentLevelNodes, childrenField, parent = null, parentIn
49
49
  * [filterable]="true">
50
50
  * </kendo-treeview>
51
51
  * ```
52
+ *
53
+ * @remarks
54
+ * Applied to: {@link TreeViewComponent}
52
55
  */
53
56
  export class HierarchyBindingDirective extends FilteringBase {
54
57
  component;
@@ -23,6 +23,9 @@ const LOAD_MORE_DOC_LINK = 'https://www.telerik.com/kendo-angular-ui/components/
23
23
  * totalField="totalChildren">
24
24
  * </kendo-treeview>
25
25
  * ```
26
+ *
27
+ * @remarks
28
+ * Applied to: {@link TreeViewComponent}
26
29
  */
27
30
  export class LoadMoreDirective {
28
31
  treeview;
@@ -14,9 +14,11 @@ import * as i1 from "@progress/kendo-angular-l10n";
14
14
  *
15
15
  * @example
16
16
  * ```html
17
- * <kendo-treeview-messages
18
- * loadMore="Load more items">
19
- * </kendo-treeview-messages>
17
+ * <kendo-treeview>
18
+ * <kendo-treeview-messages
19
+ * loadMore="Load more items">
20
+ * </kendo-treeview-messages>
21
+ * </kendo-treeview>
20
22
  * ```
21
23
  */
22
24
  export class CustomMessagesComponent extends TreeViewMessages {
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1750156943,
14
- version: '19.1.2-develop.4',
13
+ publishDate: 1750430855,
14
+ version: '19.1.2-develop.5',
15
15
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
16
16
  };
@@ -25,6 +25,9 @@ import * as i2 from "../navigation/navigation.service";
25
25
  * >
26
26
  * </kendo-treeview>
27
27
  * ```
28
+ *
29
+ * @remarks
30
+ * Applied to: {@link TreeViewComponent}
28
31
  */
29
32
  export class SelectDirective {
30
33
  treeView;
@@ -71,10 +71,12 @@ const providers = [
71
71
  * [nodes]="data"
72
72
  * textField="text"
73
73
  * [children]="fetchChildren"
74
- * [hasChildren]="hasChildren"
75
- * >
74
+ * [hasChildren]="hasChildren">
76
75
  * </kendo-treeview>
77
76
  * ```
77
+ *
78
+ * @remarks
79
+ * Supported children components are: {@link CustomMessagesComponent}
78
80
  */
79
81
  export class TreeViewComponent {
80
82
  element;
@@ -28,6 +28,9 @@ interface ExpandTreeItem extends TreeItem {
28
28
  * [nodes]="data">
29
29
  * </kendo-treeview>
30
30
  * ```
31
+ *
32
+ * @remarks
33
+ * Applied to: {@link TreeViewComponent}
31
34
  */
32
35
  export declare class ExpandDirective implements OnDestroy, OnChanges {
33
36
  protected component: ExpandableComponent;
@@ -28,8 +28,8 @@ const packageMetadata = {
28
28
  productName: 'Kendo UI for Angular',
29
29
  productCode: 'KENDOUIANGULAR',
30
30
  productCodes: ['KENDOUIANGULAR'],
31
- publishDate: 1750156943,
32
- version: '19.1.2-develop.4',
31
+ publishDate: 1750430855,
32
+ version: '19.1.2-develop.5',
33
33
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
34
34
  };
35
35
 
@@ -2197,10 +2197,12 @@ const providers = [
2197
2197
  * [nodes]="data"
2198
2198
  * textField="text"
2199
2199
  * [children]="fetchChildren"
2200
- * [hasChildren]="hasChildren"
2201
- * >
2200
+ * [hasChildren]="hasChildren">
2202
2201
  * </kendo-treeview>
2203
2202
  * ```
2203
+ *
2204
+ * @remarks
2205
+ * Supported children components are: {@link CustomMessagesComponent}
2204
2206
  */
2205
2207
  class TreeViewComponent {
2206
2208
  element;
@@ -3024,8 +3026,11 @@ const matchKey = index => k => {
3024
3026
  * checkBy="id"
3025
3027
  * [(checkedKeys)]="checkedKeys"
3026
3028
  * [nodes]="data">
3027
- * </kendo-treeview
3029
+ * </kendo-treeview>
3028
3030
  * ```
3031
+ *
3032
+ * @remarks
3033
+ * Applied to: {@link TreeViewComponent}
3029
3034
  */
3030
3035
  class CheckDirective {
3031
3036
  treeView;
@@ -3319,6 +3324,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
3319
3324
  /**
3320
3325
  * Represents a directive which manages the disabled in-memory state of the TreeView node
3321
3326
  * ([see example]({% slug disabledstate_treeview %})).
3327
+ *
3328
+ * @example
3329
+ * ```html
3330
+ * <kendo-treeview
3331
+ * [nodes]="data"
3332
+ * textField="text"
3333
+ * [hasChildren]="hasChildren"
3334
+ * [children]="fetchChildren"
3335
+ * kendoTreeViewDisable
3336
+ * [disabledKeys]="disabledKeys">
3337
+ * </kendo-treeview>
3338
+ * ```
3339
+ *
3340
+ * @remarks
3341
+ * Applied to: {@link TreeViewComponent}
3322
3342
  */
3323
3343
  class DisableDirective {
3324
3344
  treeView;
@@ -3397,6 +3417,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
3397
3417
  * textField="text">
3398
3418
  * </kendo-treeview>
3399
3419
  * ```
3420
+ *
3421
+ * @remarks
3422
+ * Applied to: {@link TreeViewComponent}
3400
3423
  */
3401
3424
  class DragAndDropEditingDirective {
3402
3425
  treeview;
@@ -4379,6 +4402,9 @@ const DEFAULT_SCROLL_SETTINGS = {
4379
4402
  * >
4380
4403
  * </kendo-treeview>
4381
4404
  * ```
4405
+ *
4406
+ * @remarks
4407
+ * Applied to: {@link TreeViewComponent}
4382
4408
  */
4383
4409
  class DragAndDropDirective {
4384
4410
  element;
@@ -4700,6 +4726,9 @@ const DEFAULT_FILTER_EXPAND_SETTINGS = {
4700
4726
  * [nodes]="data">
4701
4727
  * </kendo-treeview>
4702
4728
  * ```
4729
+ *
4730
+ * @remarks
4731
+ * Applied to: {@link TreeViewComponent}
4703
4732
  */
4704
4733
  class ExpandDirective {
4705
4734
  component;
@@ -5189,6 +5218,9 @@ const mapToTree = (currentLevelNodes, allNodes, parentIdField, idField, parent =
5189
5218
  * [filterable]="true">
5190
5219
  * </kendo-treeview>
5191
5220
  * ```
5221
+ *
5222
+ * @remarks
5223
+ * Applied to: {@link TreeViewComponent}
5192
5224
  */
5193
5225
  class FlatDataBindingDirective extends FilteringBase {
5194
5226
  component;
@@ -5414,6 +5446,9 @@ const mapToWrappers = (currentLevelNodes, childrenField, parent = null, parentIn
5414
5446
  * [filterable]="true">
5415
5447
  * </kendo-treeview>
5416
5448
  * ```
5449
+ *
5450
+ * @remarks
5451
+ * Applied to: {@link TreeViewComponent}
5417
5452
  */
5418
5453
  class HierarchyBindingDirective extends FilteringBase {
5419
5454
  component;
@@ -5540,6 +5575,9 @@ const LOAD_MORE_DOC_LINK = 'https://www.telerik.com/kendo-angular-ui/components/
5540
5575
  * totalField="totalChildren">
5541
5576
  * </kendo-treeview>
5542
5577
  * ```
5578
+ *
5579
+ * @remarks
5580
+ * Applied to: {@link TreeViewComponent}
5543
5581
  */
5544
5582
  class LoadMoreDirective {
5545
5583
  treeview;
@@ -5657,9 +5695,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
5657
5695
  *
5658
5696
  * @example
5659
5697
  * ```html
5660
- * <kendo-treeview-messages
5661
- * loadMore="Load more items">
5662
- * </kendo-treeview-messages>
5698
+ * <kendo-treeview>
5699
+ * <kendo-treeview-messages
5700
+ * loadMore="Load more items">
5701
+ * </kendo-treeview-messages>
5702
+ * </kendo-treeview>
5663
5703
  * ```
5664
5704
  */
5665
5705
  class CustomMessagesComponent extends TreeViewMessages {
@@ -5708,6 +5748,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
5708
5748
  * >
5709
5749
  * </kendo-treeview>
5710
5750
  * ```
5751
+ *
5752
+ * @remarks
5753
+ * Applied to: {@link TreeViewComponent}
5711
5754
  */
5712
5755
  class SelectDirective {
5713
5756
  treeView;
@@ -5854,7 +5897,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
5854
5897
  }] } });
5855
5898
 
5856
5899
  /**
5857
- * Use the `KENDO_TREEVIEW ` utility array to add all `@progress/kendo-angular-treeview` related components and directives to a standalone Angular component.
5900
+ * Use the `KENDO_TREEVIEW` utility array to add all `@progress/kendo-angular-treeview`-related components and directives to a standalone Angular component.
5858
5901
  *
5859
5902
  * @example
5860
5903
  * ```typescript
@@ -23,6 +23,9 @@ import * as i0 from "@angular/core";
23
23
  * [filterable]="true">
24
24
  * </kendo-treeview>
25
25
  * ```
26
+ *
27
+ * @remarks
28
+ * Applied to: {@link TreeViewComponent}
26
29
  */
27
30
  export declare class FlatDataBindingDirective extends FilteringBase implements OnInit, OnChanges {
28
31
  protected component: DataBoundComponent;
@@ -23,6 +23,9 @@ import * as i0 from "@angular/core";
23
23
  * [filterable]="true">
24
24
  * </kendo-treeview>
25
25
  * ```
26
+ *
27
+ * @remarks
28
+ * Applied to: {@link TreeViewComponent}
26
29
  */
27
30
  export declare class HierarchyBindingDirective extends FilteringBase implements OnInit {
28
31
  protected component: DataBoundComponent;
@@ -20,6 +20,9 @@ import * as i0 from "@angular/core";
20
20
  * totalField="totalChildren">
21
21
  * </kendo-treeview>
22
22
  * ```
23
+ *
24
+ * @remarks
25
+ * Applied to: {@link TreeViewComponent}
23
26
  */
24
27
  export declare class LoadMoreDirective {
25
28
  private treeview;
@@ -12,9 +12,11 @@ import * as i0 from "@angular/core";
12
12
  *
13
13
  * @example
14
14
  * ```html
15
- * <kendo-treeview-messages
16
- * loadMore="Load more items">
17
- * </kendo-treeview-messages>
15
+ * <kendo-treeview>
16
+ * <kendo-treeview-messages
17
+ * loadMore="Load more items">
18
+ * </kendo-treeview-messages>
19
+ * </kendo-treeview>
18
20
  * ```
19
21
  */
20
22
  export declare class CustomMessagesComponent extends TreeViewMessages {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-treeview",
3
- "version": "19.1.2-develop.4",
3
+ "version": "19.1.2-develop.5",
4
4
  "description": "Kendo UI TreeView for Angular",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -19,7 +19,7 @@
19
19
  "package": {
20
20
  "productName": "Kendo UI for Angular",
21
21
  "productCode": "KENDOUIANGULAR",
22
- "publishDate": 1750156943,
22
+ "publishDate": 1750430855,
23
23
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
24
24
  }
25
25
  },
@@ -29,15 +29,15 @@
29
29
  "@angular/core": "16 - 20",
30
30
  "@angular/platform-browser": "16 - 20",
31
31
  "@progress/kendo-licensing": "^1.5.0",
32
- "@progress/kendo-angular-common": "19.1.2-develop.4",
33
- "@progress/kendo-angular-inputs": "19.1.2-develop.4",
34
- "@progress/kendo-angular-icons": "19.1.2-develop.4",
35
- "@progress/kendo-angular-l10n": "19.1.2-develop.4",
32
+ "@progress/kendo-angular-common": "19.1.2-develop.5",
33
+ "@progress/kendo-angular-inputs": "19.1.2-develop.5",
34
+ "@progress/kendo-angular-icons": "19.1.2-develop.5",
35
+ "@progress/kendo-angular-l10n": "19.1.2-develop.5",
36
36
  "rxjs": "^6.5.3 || ^7.0.0"
37
37
  },
38
38
  "dependencies": {
39
39
  "tslib": "^2.3.1",
40
- "@progress/kendo-angular-schematics": "19.1.2-develop.4",
40
+ "@progress/kendo-angular-schematics": "19.1.2-develop.5",
41
41
  "@progress/kendo-common": "^1.0.1",
42
42
  "@progress/kendo-draggable": "^3.0.2"
43
43
  },
@@ -4,10 +4,10 @@ const schematics_1 = require("@angular-devkit/schematics");
4
4
  function default_1(options) {
5
5
  const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'TreeViewModule', package: 'treeview', peerDependencies: {
6
6
  // Peers of kendo-angular-inputs
7
- '@progress/kendo-angular-buttons': '19.1.2-develop.4',
8
- '@progress/kendo-angular-dialog': '19.1.2-develop.4',
9
- '@progress/kendo-angular-intl': '19.1.2-develop.4',
10
- '@progress/kendo-angular-popup': '19.1.2-develop.4',
7
+ '@progress/kendo-angular-buttons': '19.1.2-develop.5',
8
+ '@progress/kendo-angular-dialog': '19.1.2-develop.5',
9
+ '@progress/kendo-angular-intl': '19.1.2-develop.5',
10
+ '@progress/kendo-angular-popup': '19.1.2-develop.5',
11
11
  '@progress/kendo-drawing': '^1.9.3',
12
12
  // Peer dependency of icons
13
13
  '@progress/kendo-svg-icons': '^4.0.0'
@@ -23,6 +23,9 @@ import * as i0 from "@angular/core";
23
23
  * >
24
24
  * </kendo-treeview>
25
25
  * ```
26
+ *
27
+ * @remarks
28
+ * Applied to: {@link TreeViewComponent}
26
29
  */
27
30
  export declare class SelectDirective implements OnDestroy, OnChanges {
28
31
  protected treeView: TreeViewComponent;
@@ -35,10 +35,12 @@ import * as i0 from "@angular/core";
35
35
  * [nodes]="data"
36
36
  * textField="text"
37
37
  * [children]="fetchChildren"
38
- * [hasChildren]="hasChildren"
39
- * >
38
+ * [hasChildren]="hasChildren">
40
39
  * </kendo-treeview>
41
40
  * ```
41
+ *
42
+ * @remarks
43
+ * Supported children components are: {@link CustomMessagesComponent}
42
44
  */
43
45
  export declare class TreeViewComponent implements OnChanges, OnInit, AfterViewInit, OnDestroy, DataBoundComponent {
44
46
  element: ElementRef<HTMLElement>;