@progress/kendo-angular-treelist 14.1.0-develop.1 → 14.1.0-develop.3

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.
@@ -10,7 +10,7 @@ import * as i0 from "@angular/core";
10
10
  * Represents an item that can be placed inside a
11
11
  * [`ColumnMenuTemplate`]({% slug api_treelist_columnmenutemplatedirective %}) directive.
12
12
  *
13
- * * @example
13
+ * @example
14
14
  * ```html
15
15
  * <kendo-treelist ...>
16
16
  * <ng-template kendoTreeListColumnMenuTemplate let-service="service" let-column="column">
@@ -17,7 +17,7 @@ import * as i0 from "@angular/core";
17
17
  * - `isNew`&mdash;The state of the current item.
18
18
  * - `rowIndex`&mdash;The current row index. If inside a new item row, `rowIndex` is `-1`.
19
19
  *
20
- * * @example
20
+ * @example
21
21
  * ```html
22
22
  * <kendo-treelist ...>
23
23
  * <kendo-treelist-command-column title="command">
@@ -12,7 +12,7 @@ import * as i2 from "@angular/common";
12
12
  * Represents an item that can be placed inside a
13
13
  * [`ColumnMenuTemplate`]({% slug api_treelist_columnmenutemplatedirective %}) directive.
14
14
  *
15
- * * @example
15
+ * @example
16
16
  * ```html
17
17
  * <kendo-treelist ...>
18
18
  * <ng-template kendoTreeListColumnMenuTemplate let-service="service" let-column="column">
@@ -17,7 +17,7 @@ import * as i0 from "@angular/core";
17
17
  * - `isNew`&mdash;The state of the current item.
18
18
  * - `rowIndex`&mdash;The current row index. If inside a new item row, `rowIndex` is `-1`.
19
19
  *
20
- * * @example
20
+ * @example
21
21
  * ```html
22
22
  * <kendo-treelist ...>
23
23
  * <kendo-treelist-command-column title="command">
@@ -53,19 +53,12 @@ export class NumericFilterComponent extends BaseFilterCellComponent {
53
53
  * Specifies the number format used when the component is not focused.
54
54
  * By default, the `column.format` value is used (if set).
55
55
  */
56
- set format(value) {
57
- this._format = value;
58
- }
59
- /**
60
- * Specifies the number format used when the component is not focused.
61
- * By default, the `column.format` value is used (if set).
62
- *
63
- * @readonly
64
- * @type {string}
65
- */
66
56
  get format() {
67
57
  return !isNullOrEmptyString(this._format) ? this._format : this.columnFormat;
68
58
  }
59
+ set format(value) {
60
+ this._format = value;
61
+ }
69
62
  /**
70
63
  * The current filter for the associated column field.
71
64
  * @readonly
@@ -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: 1698853437,
13
- version: '14.1.0-develop.1',
12
+ publishDate: 1699261375,
13
+ version: '14.1.0-develop.3',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -2048,7 +2048,7 @@ TreeListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
2048
2048
  <table
2049
2049
  class="k-table k-table-md k-grid-header-table"
2050
2050
  [style.table-layout]="resizable ? 'fixed' : null">
2051
- <colgroup
2051
+ <colgroup
2052
2052
  kendoTreeListColGroup
2053
2053
  [columns]="$any(leafColumns)">
2054
2054
  </colgroup>
@@ -2472,7 +2472,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
2472
2472
  <table
2473
2473
  class="k-table k-table-md k-grid-header-table"
2474
2474
  [style.table-layout]="resizable ? 'fixed' : null">
2475
- <colgroup
2475
+ <colgroup
2476
2476
  kendoTreeListColGroup
2477
2477
  [columns]="$any(leafColumns)">
2478
2478
  </colgroup>
@@ -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: 1698853437,
52
- version: '14.1.0-develop.1',
51
+ publishDate: 1699261375,
52
+ version: '14.1.0-develop.3',
53
53
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
54
54
  };
55
55
 
@@ -111,7 +111,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
111
111
  * - `isNew`&mdash;The state of the current item.
112
112
  * - `rowIndex`&mdash;The current row index. If inside a new item row, `rowIndex` is `-1`.
113
113
  *
114
- * * @example
114
+ * @example
115
115
  * ```html
116
116
  * <kendo-treelist ...>
117
117
  * <kendo-treelist-command-column title="command">
@@ -6596,19 +6596,12 @@ class NumericFilterComponent extends BaseFilterCellComponent {
6596
6596
  * Specifies the number format used when the component is not focused.
6597
6597
  * By default, the `column.format` value is used (if set).
6598
6598
  */
6599
- set format(value) {
6600
- this._format = value;
6601
- }
6602
- /**
6603
- * Specifies the number format used when the component is not focused.
6604
- * By default, the `column.format` value is used (if set).
6605
- *
6606
- * @readonly
6607
- * @type {string}
6608
- */
6609
6599
  get format() {
6610
6600
  return !isNullOrEmptyString(this._format) ? this._format : this.columnFormat;
6611
6601
  }
6602
+ set format(value) {
6603
+ this._format = value;
6604
+ }
6612
6605
  /**
6613
6606
  * The current filter for the associated column field.
6614
6607
  * @readonly
@@ -7956,7 +7949,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
7956
7949
  * Represents an item that can be placed inside a
7957
7950
  * [`ColumnMenuTemplate`]({% slug api_treelist_columnmenutemplatedirective %}) directive.
7958
7951
  *
7959
- * * @example
7952
+ * @example
7960
7953
  * ```html
7961
7954
  * <kendo-treelist ...>
7962
7955
  * <ng-template kendoTreeListColumnMenuTemplate let-service="service" let-column="column">
@@ -16623,7 +16616,7 @@ TreeListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
16623
16616
  <table
16624
16617
  class="k-table k-table-md k-grid-header-table"
16625
16618
  [style.table-layout]="resizable ? 'fixed' : null">
16626
- <colgroup
16619
+ <colgroup
16627
16620
  kendoTreeListColGroup
16628
16621
  [columns]="$any(leafColumns)">
16629
16622
  </colgroup>
@@ -17047,7 +17040,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
17047
17040
  <table
17048
17041
  class="k-table k-table-md k-grid-header-table"
17049
17042
  [style.table-layout]="resizable ? 'fixed' : null">
17050
- <colgroup
17043
+ <colgroup
17051
17044
  kendoTreeListColGroup
17052
17045
  [columns]="$any(leafColumns)">
17053
17046
  </colgroup>
@@ -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: 1698853437,
52
- version: '14.1.0-develop.1',
51
+ publishDate: 1699261375,
52
+ version: '14.1.0-develop.3',
53
53
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
54
54
  };
55
55
 
@@ -109,7 +109,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
109
109
  * - `isNew`&mdash;The state of the current item.
110
110
  * - `rowIndex`&mdash;The current row index. If inside a new item row, `rowIndex` is `-1`.
111
111
  *
112
- * * @example
112
+ * @example
113
113
  * ```html
114
114
  * <kendo-treelist ...>
115
115
  * <kendo-treelist-command-column title="command">
@@ -6556,19 +6556,12 @@ class NumericFilterComponent extends BaseFilterCellComponent {
6556
6556
  * Specifies the number format used when the component is not focused.
6557
6557
  * By default, the `column.format` value is used (if set).
6558
6558
  */
6559
- set format(value) {
6560
- this._format = value;
6561
- }
6562
- /**
6563
- * Specifies the number format used when the component is not focused.
6564
- * By default, the `column.format` value is used (if set).
6565
- *
6566
- * @readonly
6567
- * @type {string}
6568
- */
6569
6559
  get format() {
6570
6560
  return !isNullOrEmptyString(this._format) ? this._format : this.columnFormat;
6571
6561
  }
6562
+ set format(value) {
6563
+ this._format = value;
6564
+ }
6572
6565
  /**
6573
6566
  * The current filter for the associated column field.
6574
6567
  * @readonly
@@ -7912,7 +7905,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
7912
7905
  * Represents an item that can be placed inside a
7913
7906
  * [`ColumnMenuTemplate`]({% slug api_treelist_columnmenutemplatedirective %}) directive.
7914
7907
  *
7915
- * * @example
7908
+ * @example
7916
7909
  * ```html
7917
7910
  * <kendo-treelist ...>
7918
7911
  * <ng-template kendoTreeListColumnMenuTemplate let-service="service" let-column="column">
@@ -16570,7 +16563,7 @@ TreeListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
16570
16563
  <table
16571
16564
  class="k-table k-table-md k-grid-header-table"
16572
16565
  [style.table-layout]="resizable ? 'fixed' : null">
16573
- <colgroup
16566
+ <colgroup
16574
16567
  kendoTreeListColGroup
16575
16568
  [columns]="$any(leafColumns)">
16576
16569
  </colgroup>
@@ -16994,7 +16987,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
16994
16987
  <table
16995
16988
  class="k-table k-table-md k-grid-header-table"
16996
16989
  [style.table-layout]="resizable ? 'fixed' : null">
16997
- <colgroup
16990
+ <colgroup
16998
16991
  kendoTreeListColGroup
16999
16992
  [columns]="$any(leafColumns)">
17000
16993
  </colgroup>
@@ -64,15 +64,8 @@ export declare abstract class NumericFilterComponent extends BaseFilterCellCompo
64
64
  * Specifies the number format used when the component is not focused.
65
65
  * By default, the `column.format` value is used (if set).
66
66
  */
67
- set format(value: string);
68
- /**
69
- * Specifies the number format used when the component is not focused.
70
- * By default, the `column.format` value is used (if set).
71
- *
72
- * @readonly
73
- * @type {string}
74
- */
75
67
  get format(): string;
68
+ set format(value: string);
76
69
  /**
77
70
  * The current filter for the associated column field.
78
71
  * @readonly
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-treelist",
3
- "version": "14.1.0-develop.1",
3
+ "version": "14.1.0-develop.3",
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",
@@ -31,25 +31,25 @@
31
31
  "@progress/kendo-data-query": "^1.0.0",
32
32
  "@progress/kendo-drawing": "^1.17.2",
33
33
  "@progress/kendo-licensing": "^1.0.2",
34
- "@progress/kendo-angular-buttons": "14.1.0-develop.1",
35
- "@progress/kendo-angular-common": "14.1.0-develop.1",
36
- "@progress/kendo-angular-dateinputs": "14.1.0-develop.1",
37
- "@progress/kendo-angular-dropdowns": "14.1.0-develop.1",
38
- "@progress/kendo-angular-excel-export": "14.1.0-develop.1",
39
- "@progress/kendo-angular-icons": "14.1.0-develop.1",
40
- "@progress/kendo-angular-inputs": "14.1.0-develop.1",
41
- "@progress/kendo-angular-intl": "14.1.0-develop.1",
42
- "@progress/kendo-angular-l10n": "14.1.0-develop.1",
43
- "@progress/kendo-angular-label": "14.1.0-develop.1",
44
- "@progress/kendo-angular-pdf-export": "14.1.0-develop.1",
45
- "@progress/kendo-angular-popup": "14.1.0-develop.1",
46
- "@progress/kendo-angular-utils": "14.1.0-develop.1",
34
+ "@progress/kendo-angular-buttons": "14.1.0-develop.3",
35
+ "@progress/kendo-angular-common": "14.1.0-develop.3",
36
+ "@progress/kendo-angular-dateinputs": "14.1.0-develop.3",
37
+ "@progress/kendo-angular-dropdowns": "14.1.0-develop.3",
38
+ "@progress/kendo-angular-excel-export": "14.1.0-develop.3",
39
+ "@progress/kendo-angular-icons": "14.1.0-develop.3",
40
+ "@progress/kendo-angular-inputs": "14.1.0-develop.3",
41
+ "@progress/kendo-angular-intl": "14.1.0-develop.3",
42
+ "@progress/kendo-angular-l10n": "14.1.0-develop.3",
43
+ "@progress/kendo-angular-label": "14.1.0-develop.3",
44
+ "@progress/kendo-angular-pdf-export": "14.1.0-develop.3",
45
+ "@progress/kendo-angular-popup": "14.1.0-develop.3",
46
+ "@progress/kendo-angular-utils": "14.1.0-develop.3",
47
47
  "rxjs": "^6.5.3 || ^7.0.0",
48
- "@progress/kendo-angular-listview": "14.1.0-develop.1"
48
+ "@progress/kendo-angular-listview": "14.1.0-develop.3"
49
49
  },
50
50
  "dependencies": {
51
51
  "tslib": "^2.3.1",
52
- "@progress/kendo-angular-schematics": "14.1.0-develop.1",
52
+ "@progress/kendo-angular-schematics": "14.1.0-develop.3",
53
53
  "@progress/kendo-common": "^0.2.0",
54
54
  "@progress/kendo-file-saver": "^1.0.0"
55
55
  },
@@ -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.1.0-develop.1',
7
+ '@progress/kendo-angular-treeview': '14.1.0-develop.3',
8
8
  // peer dependency of kendo-angular-inputs
9
- '@progress/kendo-angular-dialog': '14.1.0-develop.1',
9
+ '@progress/kendo-angular-dialog': '14.1.0-develop.3',
10
10
  // peer dependency of kendo-angular-icons
11
11
  '@progress/kendo-svg-icons': '^2.0.0',
12
12
  // peer dependency of kendo-angular-dateinputs
13
- '@progress/kendo-angular-navigation': '14.1.0-develop.1',
13
+ '@progress/kendo-angular-navigation': '14.1.0-develop.3',
14
14
  } });
15
15
  return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
16
16
  }