@progress/kendo-angular-treelist 14.1.0-develop.1 → 14.1.0-develop.11
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 +1 -1
- package/editing/edit-template.directive.d.ts +1 -1
- package/esm2020/column-menu/column-menu-item.component.mjs +1 -1
- package/esm2020/editing/edit-template.directive.mjs +1 -1
- package/esm2020/filtering/numeric-filter.component.mjs +3 -10
- package/esm2020/index.mjs +1 -0
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/rendering/cell.component.mjs +2 -2
- package/esm2020/treelist.component.mjs +2 -2
- package/fesm2015/progress-kendo-angular-treelist.mjs +12 -19
- package/fesm2020/progress-kendo-angular-treelist.mjs +12 -19
- package/filtering/numeric-filter.component.d.ts +1 -8
- package/index.d.ts +1 -0
- package/package.json +16 -16
- package/schematics/ngAdd/index.js +3 -3
|
@@ -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
|
-
*
|
|
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`—The state of the current item.
|
|
18
18
|
* - `rowIndex`—The current row index. If inside a new item row, `rowIndex` is `-1`.
|
|
19
19
|
*
|
|
20
|
-
*
|
|
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
|
-
*
|
|
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`—The state of the current item.
|
|
18
18
|
* - `rowIndex`—The current row index. If inside a new item row, `rowIndex` is `-1`.
|
|
19
19
|
*
|
|
20
|
-
*
|
|
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
|
package/esm2020/index.mjs
CHANGED
|
@@ -103,6 +103,7 @@ export { ColumnReorderEvent } from './dragdrop/column-reorder-event';
|
|
|
103
103
|
export { FocusableDirective } from './navigation/focusable.directive';
|
|
104
104
|
export { ColumnVisibilityChangeEvent } from './column-menu/column-visibility-change-event';
|
|
105
105
|
export { ColumnMenuComponent } from './column-menu/column-menu.component';
|
|
106
|
+
export { ColumnMenuService } from './column-menu/column-menu.service';
|
|
106
107
|
export { ColumnInfoService } from './common/column-info.service';
|
|
107
108
|
export { SinglePopupService, PopupCloseEvent } from './common/single-popup.service';
|
|
108
109
|
export { ExpandEvent } from './expand-state/expand-event';
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-treelist',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '14.1.0-develop.
|
|
12
|
+
publishDate: 1699450761,
|
|
13
|
+
version: '14.1.0-develop.11',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -219,7 +219,7 @@ CellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
|
|
|
219
219
|
<input
|
|
220
220
|
*ngSwitchDefault
|
|
221
221
|
type="text"
|
|
222
|
-
class="k-textbox k-input k-input-solid k-rounded-md"
|
|
222
|
+
class="k-textbox k-input k-input-md k-input-solid k-rounded-md"
|
|
223
223
|
[formControl]="$any(formGroup.get(column.field))"
|
|
224
224
|
kendoTreeListFocusable
|
|
225
225
|
/>
|
|
@@ -300,7 +300,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
300
300
|
<input
|
|
301
301
|
*ngSwitchDefault
|
|
302
302
|
type="text"
|
|
303
|
-
class="k-textbox k-input k-input-solid k-rounded-md"
|
|
303
|
+
class="k-textbox k-input k-input-md k-input-solid k-rounded-md"
|
|
304
304
|
[formControl]="$any(formGroup.get(column.field))"
|
|
305
305
|
kendoTreeListFocusable
|
|
306
306
|
/>
|
|
@@ -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:
|
|
52
|
-
version: '14.1.0-develop.
|
|
51
|
+
publishDate: 1699450761,
|
|
52
|
+
version: '14.1.0-develop.11',
|
|
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`—The state of the current item.
|
|
112
112
|
* - `rowIndex`—The current row index. If inside a new item row, `rowIndex` is `-1`.
|
|
113
113
|
*
|
|
114
|
-
*
|
|
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
|
-
*
|
|
7952
|
+
* @example
|
|
7960
7953
|
* ```html
|
|
7961
7954
|
* <kendo-treelist ...>
|
|
7962
7955
|
* <ng-template kendoTreeListColumnMenuTemplate let-service="service" let-column="column">
|
|
@@ -11399,7 +11392,7 @@ CellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
|
|
|
11399
11392
|
<input
|
|
11400
11393
|
*ngSwitchDefault
|
|
11401
11394
|
type="text"
|
|
11402
|
-
class="k-textbox k-input k-input-solid k-rounded-md"
|
|
11395
|
+
class="k-textbox k-input k-input-md k-input-solid k-rounded-md"
|
|
11403
11396
|
[formControl]="$any(formGroup.get(column.field))"
|
|
11404
11397
|
kendoTreeListFocusable
|
|
11405
11398
|
/>
|
|
@@ -11480,7 +11473,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
11480
11473
|
<input
|
|
11481
11474
|
*ngSwitchDefault
|
|
11482
11475
|
type="text"
|
|
11483
|
-
class="k-textbox k-input k-input-solid k-rounded-md"
|
|
11476
|
+
class="k-textbox k-input k-input-md k-input-solid k-rounded-md"
|
|
11484
11477
|
[formControl]="$any(formGroup.get(column.field))"
|
|
11485
11478
|
kendoTreeListFocusable
|
|
11486
11479
|
/>
|
|
@@ -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>
|
|
@@ -21553,5 +21546,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
21553
21546
|
* Generated bundle index. Do not edit.
|
|
21554
21547
|
*/
|
|
21555
21548
|
|
|
21556
|
-
export { AddCommandDirective, AfterEqFilterOperatorComponent, AfterFilterOperatorComponent, AutoCompleteFilterCellComponent, BaseCommandDirective, BaseFilterCellComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, BodyModule, BooleanFilterCellComponent, BooleanFilterComponent, BooleanFilterMenuComponent, CancelCommandDirective, CellCloseEvent, CellComponent, CellTemplateDirective, CheckboxColumnComponent, ColGroupComponent, ColumnBase, ColumnChooserComponent, ColumnComponent, ColumnGroupComponent, ColumnHandleDirective, ColumnInfoService, ColumnMenuChooserComponent, ColumnMenuComponent, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuItemContentTemplateDirective, ColumnMenuLockComponent, ColumnMenuSortComponent, ColumnMenuTemplateDirective, ColumnReorderEvent, ColumnVisibilityChangeEvent, ColumnsContainer, CommandColumnComponent, ContainsFilterOperatorComponent, CustomMessagesComponent, DataBoundTreeComponent, DateFilterCellComponent, DateFilterComponent, DateFilterMenuComponent, DateFilterMenuInputComponent, DoesNotContainFilterOperatorComponent, EditCommandDirective, EditTemplateDirective, EditingDirectiveBase, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, ExcelCommandDirective, ExcelComponent, ExcelExportEvent, ExcelModule, ExcelService, ExpandEvent, ExpandableDirective, ExpandableTreeComponent, FieldAccessorPipe, FilterCellComponent, FilterCellHostDirective, FilterCellOperatorsComponent, FilterCellTemplateDirective, FilterCellWrapperComponent, FilterInputDirective, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuHostDirective, FilterMenuInputWrapperComponent, FilterMenuModule, FilterMenuTemplateDirective, FilterRowComponent, FilterService, FlatBindingDirective, FocusableDirective, FooterTemplateDirective, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, HeaderComponent, HeaderModule, HeaderTemplateDirective, HierarchyBindingDirective, InCellEditingDirective, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, LevelItemsPipe, ListComponent, LoadingComponent, LogicalCellDirective, LogicalRowDirective, NoRecordsTemplateDirective, NotEqualFilterOperatorComponent, NumericFilterCellComponent, NumericFilterMenuComponent, NumericFilterMenuInputComponent, PDFCommandDirective, PDFComponent, PDFMarginComponent, PDFModule, PDFService, PDFTemplateDirective, PagerComponent, PagerInfoComponent, PagerInputComponent, PagerModule, PagerNextButtonsComponent, PagerNumericButtonsComponent, PagerPageSizesComponent, PagerPrevButtonsComponent, PagerTemplateDirective, PopupCloseEvent, ReactiveEditingDirective, RemoveCommandDirective, ResizableContainerDirective, RowEditingDirectiveBase, RowFilterModule, RowReorderColumnComponent, RowReorderService, SaveCommandDirective, SelectableDirective, SelectionChangeEvent, SharedFilterModule, SharedModule, SinglePopupService, Skip, SpanColumnComponent, StartsWithFilterOperatorComponent, StringFilterCellComponent, StringFilterMenuComponent, StringFilterMenuInputComponent, SuspendService, TableBodyComponent, TableDirective, TemplateContextDirective, TemplateEditingDirective, ToolbarComponent, ToolbarTemplateDirective, TreeListComponent, TreeListModule, TreeListSpacerComponent, TreeListToolbarFocusableDirective };
|
|
21549
|
+
export { AddCommandDirective, AfterEqFilterOperatorComponent, AfterFilterOperatorComponent, AutoCompleteFilterCellComponent, BaseCommandDirective, BaseFilterCellComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, BodyModule, BooleanFilterCellComponent, BooleanFilterComponent, BooleanFilterMenuComponent, CancelCommandDirective, CellCloseEvent, CellComponent, CellTemplateDirective, CheckboxColumnComponent, ColGroupComponent, ColumnBase, ColumnChooserComponent, ColumnComponent, ColumnGroupComponent, ColumnHandleDirective, ColumnInfoService, ColumnMenuChooserComponent, ColumnMenuComponent, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuItemContentTemplateDirective, ColumnMenuLockComponent, ColumnMenuService, ColumnMenuSortComponent, ColumnMenuTemplateDirective, ColumnReorderEvent, ColumnVisibilityChangeEvent, ColumnsContainer, CommandColumnComponent, ContainsFilterOperatorComponent, CustomMessagesComponent, DataBoundTreeComponent, DateFilterCellComponent, DateFilterComponent, DateFilterMenuComponent, DateFilterMenuInputComponent, DoesNotContainFilterOperatorComponent, EditCommandDirective, EditTemplateDirective, EditingDirectiveBase, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, ExcelCommandDirective, ExcelComponent, ExcelExportEvent, ExcelModule, ExcelService, ExpandEvent, ExpandableDirective, ExpandableTreeComponent, FieldAccessorPipe, FilterCellComponent, FilterCellHostDirective, FilterCellOperatorsComponent, FilterCellTemplateDirective, FilterCellWrapperComponent, FilterInputDirective, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuHostDirective, FilterMenuInputWrapperComponent, FilterMenuModule, FilterMenuTemplateDirective, FilterRowComponent, FilterService, FlatBindingDirective, FocusableDirective, FooterTemplateDirective, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, HeaderComponent, HeaderModule, HeaderTemplateDirective, HierarchyBindingDirective, InCellEditingDirective, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, LevelItemsPipe, ListComponent, LoadingComponent, LogicalCellDirective, LogicalRowDirective, NoRecordsTemplateDirective, NotEqualFilterOperatorComponent, NumericFilterCellComponent, NumericFilterMenuComponent, NumericFilterMenuInputComponent, PDFCommandDirective, PDFComponent, PDFMarginComponent, PDFModule, PDFService, PDFTemplateDirective, PagerComponent, PagerInfoComponent, PagerInputComponent, PagerModule, PagerNextButtonsComponent, PagerNumericButtonsComponent, PagerPageSizesComponent, PagerPrevButtonsComponent, PagerTemplateDirective, PopupCloseEvent, ReactiveEditingDirective, RemoveCommandDirective, ResizableContainerDirective, RowEditingDirectiveBase, RowFilterModule, RowReorderColumnComponent, RowReorderService, SaveCommandDirective, SelectableDirective, SelectionChangeEvent, SharedFilterModule, SharedModule, SinglePopupService, Skip, SpanColumnComponent, StartsWithFilterOperatorComponent, StringFilterCellComponent, StringFilterMenuComponent, StringFilterMenuInputComponent, SuspendService, TableBodyComponent, TableDirective, TemplateContextDirective, TemplateEditingDirective, ToolbarComponent, ToolbarTemplateDirective, TreeListComponent, TreeListModule, TreeListSpacerComponent, TreeListToolbarFocusableDirective };
|
|
21557
21550
|
|
|
@@ -48,8 +48,8 @@ const packageMetadata = {
|
|
|
48
48
|
name: '@progress/kendo-angular-treelist',
|
|
49
49
|
productName: 'Kendo UI for Angular',
|
|
50
50
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
51
|
-
publishDate:
|
|
52
|
-
version: '14.1.0-develop.
|
|
51
|
+
publishDate: 1699450761,
|
|
52
|
+
version: '14.1.0-develop.11',
|
|
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`—The state of the current item.
|
|
110
110
|
* - `rowIndex`—The current row index. If inside a new item row, `rowIndex` is `-1`.
|
|
111
111
|
*
|
|
112
|
-
*
|
|
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
|
-
*
|
|
7908
|
+
* @example
|
|
7916
7909
|
* ```html
|
|
7917
7910
|
* <kendo-treelist ...>
|
|
7918
7911
|
* <ng-template kendoTreeListColumnMenuTemplate let-service="service" let-column="column">
|
|
@@ -11350,7 +11343,7 @@ CellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
|
|
|
11350
11343
|
<input
|
|
11351
11344
|
*ngSwitchDefault
|
|
11352
11345
|
type="text"
|
|
11353
|
-
class="k-textbox k-input k-input-solid k-rounded-md"
|
|
11346
|
+
class="k-textbox k-input k-input-md k-input-solid k-rounded-md"
|
|
11354
11347
|
[formControl]="$any(formGroup.get(column.field))"
|
|
11355
11348
|
kendoTreeListFocusable
|
|
11356
11349
|
/>
|
|
@@ -11431,7 +11424,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
11431
11424
|
<input
|
|
11432
11425
|
*ngSwitchDefault
|
|
11433
11426
|
type="text"
|
|
11434
|
-
class="k-textbox k-input k-input-solid k-rounded-md"
|
|
11427
|
+
class="k-textbox k-input k-input-md k-input-solid k-rounded-md"
|
|
11435
11428
|
[formControl]="$any(formGroup.get(column.field))"
|
|
11436
11429
|
kendoTreeListFocusable
|
|
11437
11430
|
/>
|
|
@@ -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>
|
|
@@ -21486,5 +21479,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
21486
21479
|
* Generated bundle index. Do not edit.
|
|
21487
21480
|
*/
|
|
21488
21481
|
|
|
21489
|
-
export { AddCommandDirective, AfterEqFilterOperatorComponent, AfterFilterOperatorComponent, AutoCompleteFilterCellComponent, BaseCommandDirective, BaseFilterCellComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, BodyModule, BooleanFilterCellComponent, BooleanFilterComponent, BooleanFilterMenuComponent, CancelCommandDirective, CellCloseEvent, CellComponent, CellTemplateDirective, CheckboxColumnComponent, ColGroupComponent, ColumnBase, ColumnChooserComponent, ColumnComponent, ColumnGroupComponent, ColumnHandleDirective, ColumnInfoService, ColumnMenuChooserComponent, ColumnMenuComponent, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuItemContentTemplateDirective, ColumnMenuLockComponent, ColumnMenuSortComponent, ColumnMenuTemplateDirective, ColumnReorderEvent, ColumnVisibilityChangeEvent, ColumnsContainer, CommandColumnComponent, ContainsFilterOperatorComponent, CustomMessagesComponent, DataBoundTreeComponent, DateFilterCellComponent, DateFilterComponent, DateFilterMenuComponent, DateFilterMenuInputComponent, DoesNotContainFilterOperatorComponent, EditCommandDirective, EditTemplateDirective, EditingDirectiveBase, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, ExcelCommandDirective, ExcelComponent, ExcelExportEvent, ExcelModule, ExcelService, ExpandEvent, ExpandableDirective, ExpandableTreeComponent, FieldAccessorPipe, FilterCellComponent, FilterCellHostDirective, FilterCellOperatorsComponent, FilterCellTemplateDirective, FilterCellWrapperComponent, FilterInputDirective, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuHostDirective, FilterMenuInputWrapperComponent, FilterMenuModule, FilterMenuTemplateDirective, FilterRowComponent, FilterService, FlatBindingDirective, FocusableDirective, FooterTemplateDirective, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, HeaderComponent, HeaderModule, HeaderTemplateDirective, HierarchyBindingDirective, InCellEditingDirective, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, LevelItemsPipe, ListComponent, LoadingComponent, LogicalCellDirective, LogicalRowDirective, NoRecordsTemplateDirective, NotEqualFilterOperatorComponent, NumericFilterCellComponent, NumericFilterMenuComponent, NumericFilterMenuInputComponent, PDFCommandDirective, PDFComponent, PDFMarginComponent, PDFModule, PDFService, PDFTemplateDirective, PagerComponent, PagerInfoComponent, PagerInputComponent, PagerModule, PagerNextButtonsComponent, PagerNumericButtonsComponent, PagerPageSizesComponent, PagerPrevButtonsComponent, PagerTemplateDirective, PopupCloseEvent, ReactiveEditingDirective, RemoveCommandDirective, ResizableContainerDirective, RowEditingDirectiveBase, RowFilterModule, RowReorderColumnComponent, RowReorderService, SaveCommandDirective, SelectableDirective, SelectionChangeEvent, SharedFilterModule, SharedModule, SinglePopupService, Skip, SpanColumnComponent, StartsWithFilterOperatorComponent, StringFilterCellComponent, StringFilterMenuComponent, StringFilterMenuInputComponent, SuspendService, TableBodyComponent, TableDirective, TemplateContextDirective, TemplateEditingDirective, ToolbarComponent, ToolbarTemplateDirective, TreeListComponent, TreeListModule, TreeListSpacerComponent, TreeListToolbarFocusableDirective };
|
|
21482
|
+
export { AddCommandDirective, AfterEqFilterOperatorComponent, AfterFilterOperatorComponent, AutoCompleteFilterCellComponent, BaseCommandDirective, BaseFilterCellComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, BodyModule, BooleanFilterCellComponent, BooleanFilterComponent, BooleanFilterMenuComponent, CancelCommandDirective, CellCloseEvent, CellComponent, CellTemplateDirective, CheckboxColumnComponent, ColGroupComponent, ColumnBase, ColumnChooserComponent, ColumnComponent, ColumnGroupComponent, ColumnHandleDirective, ColumnInfoService, ColumnMenuChooserComponent, ColumnMenuComponent, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuItemContentTemplateDirective, ColumnMenuLockComponent, ColumnMenuService, ColumnMenuSortComponent, ColumnMenuTemplateDirective, ColumnReorderEvent, ColumnVisibilityChangeEvent, ColumnsContainer, CommandColumnComponent, ContainsFilterOperatorComponent, CustomMessagesComponent, DataBoundTreeComponent, DateFilterCellComponent, DateFilterComponent, DateFilterMenuComponent, DateFilterMenuInputComponent, DoesNotContainFilterOperatorComponent, EditCommandDirective, EditTemplateDirective, EditingDirectiveBase, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, ExcelCommandDirective, ExcelComponent, ExcelExportEvent, ExcelModule, ExcelService, ExpandEvent, ExpandableDirective, ExpandableTreeComponent, FieldAccessorPipe, FilterCellComponent, FilterCellHostDirective, FilterCellOperatorsComponent, FilterCellTemplateDirective, FilterCellWrapperComponent, FilterInputDirective, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuHostDirective, FilterMenuInputWrapperComponent, FilterMenuModule, FilterMenuTemplateDirective, FilterRowComponent, FilterService, FlatBindingDirective, FocusableDirective, FooterTemplateDirective, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, HeaderComponent, HeaderModule, HeaderTemplateDirective, HierarchyBindingDirective, InCellEditingDirective, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, LevelItemsPipe, ListComponent, LoadingComponent, LogicalCellDirective, LogicalRowDirective, NoRecordsTemplateDirective, NotEqualFilterOperatorComponent, NumericFilterCellComponent, NumericFilterMenuComponent, NumericFilterMenuInputComponent, PDFCommandDirective, PDFComponent, PDFMarginComponent, PDFModule, PDFService, PDFTemplateDirective, PagerComponent, PagerInfoComponent, PagerInputComponent, PagerModule, PagerNextButtonsComponent, PagerNumericButtonsComponent, PagerPageSizesComponent, PagerPrevButtonsComponent, PagerTemplateDirective, PopupCloseEvent, ReactiveEditingDirective, RemoveCommandDirective, ResizableContainerDirective, RowEditingDirectiveBase, RowFilterModule, RowReorderColumnComponent, RowReorderService, SaveCommandDirective, SelectableDirective, SelectionChangeEvent, SharedFilterModule, SharedModule, SinglePopupService, Skip, SpanColumnComponent, StartsWithFilterOperatorComponent, StringFilterCellComponent, StringFilterMenuComponent, StringFilterMenuInputComponent, SuspendService, TableBodyComponent, TableDirective, TemplateContextDirective, TemplateEditingDirective, ToolbarComponent, ToolbarTemplateDirective, TreeListComponent, TreeListModule, TreeListSpacerComponent, TreeListToolbarFocusableDirective };
|
|
21490
21483
|
|
|
@@ -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/index.d.ts
CHANGED
|
@@ -131,6 +131,7 @@ export { NavigationRow } from './navigation/navigation-row.interface';
|
|
|
131
131
|
export { ColumnMenuSettings } from './column-menu/column-menu-settings.interface';
|
|
132
132
|
export { ColumnVisibilityChangeEvent } from './column-menu/column-visibility-change-event';
|
|
133
133
|
export { ColumnMenuComponent } from './column-menu/column-menu.component';
|
|
134
|
+
export { ColumnMenuService } from './column-menu/column-menu.service';
|
|
134
135
|
export { ColumnInfoService } from './common/column-info.service';
|
|
135
136
|
export { SinglePopupService, PopupCloseEvent } from './common/single-popup.service';
|
|
136
137
|
export { ScrollRequest } from './scrolling/scroll-request.service';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-treelist",
|
|
3
|
-
"version": "14.1.0-develop.
|
|
3
|
+
"version": "14.1.0-develop.11",
|
|
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.
|
|
35
|
-
"@progress/kendo-angular-common": "14.1.0-develop.
|
|
36
|
-
"@progress/kendo-angular-dateinputs": "14.1.0-develop.
|
|
37
|
-
"@progress/kendo-angular-dropdowns": "14.1.0-develop.
|
|
38
|
-
"@progress/kendo-angular-excel-export": "14.1.0-develop.
|
|
39
|
-
"@progress/kendo-angular-icons": "14.1.0-develop.
|
|
40
|
-
"@progress/kendo-angular-inputs": "14.1.0-develop.
|
|
41
|
-
"@progress/kendo-angular-intl": "14.1.0-develop.
|
|
42
|
-
"@progress/kendo-angular-l10n": "14.1.0-develop.
|
|
43
|
-
"@progress/kendo-angular-label": "14.1.0-develop.
|
|
44
|
-
"@progress/kendo-angular-pdf-export": "14.1.0-develop.
|
|
45
|
-
"@progress/kendo-angular-popup": "14.1.0-develop.
|
|
46
|
-
"@progress/kendo-angular-utils": "14.1.0-develop.
|
|
34
|
+
"@progress/kendo-angular-buttons": "14.1.0-develop.11",
|
|
35
|
+
"@progress/kendo-angular-common": "14.1.0-develop.11",
|
|
36
|
+
"@progress/kendo-angular-dateinputs": "14.1.0-develop.11",
|
|
37
|
+
"@progress/kendo-angular-dropdowns": "14.1.0-develop.11",
|
|
38
|
+
"@progress/kendo-angular-excel-export": "14.1.0-develop.11",
|
|
39
|
+
"@progress/kendo-angular-icons": "14.1.0-develop.11",
|
|
40
|
+
"@progress/kendo-angular-inputs": "14.1.0-develop.11",
|
|
41
|
+
"@progress/kendo-angular-intl": "14.1.0-develop.11",
|
|
42
|
+
"@progress/kendo-angular-l10n": "14.1.0-develop.11",
|
|
43
|
+
"@progress/kendo-angular-label": "14.1.0-develop.11",
|
|
44
|
+
"@progress/kendo-angular-pdf-export": "14.1.0-develop.11",
|
|
45
|
+
"@progress/kendo-angular-popup": "14.1.0-develop.11",
|
|
46
|
+
"@progress/kendo-angular-utils": "14.1.0-develop.11",
|
|
47
47
|
"rxjs": "^6.5.3 || ^7.0.0",
|
|
48
|
-
"@progress/kendo-angular-listview": "14.1.0-develop.
|
|
48
|
+
"@progress/kendo-angular-listview": "14.1.0-develop.11"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"tslib": "^2.3.1",
|
|
52
|
-
"@progress/kendo-angular-schematics": "14.1.0-develop.
|
|
52
|
+
"@progress/kendo-angular-schematics": "14.1.0-develop.11",
|
|
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.
|
|
7
|
+
'@progress/kendo-angular-treeview': '14.1.0-develop.11',
|
|
8
8
|
// peer dependency of kendo-angular-inputs
|
|
9
|
-
'@progress/kendo-angular-dialog': '14.1.0-develop.
|
|
9
|
+
'@progress/kendo-angular-dialog': '14.1.0-develop.11',
|
|
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.
|
|
13
|
+
'@progress/kendo-angular-navigation': '14.1.0-develop.11',
|
|
14
14
|
} });
|
|
15
15
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
16
16
|
}
|