@progress/kendo-angular-treelist 16.6.1-develop.1 → 16.6.1-develop.2
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-resizing/table.directive.d.ts +1 -1
- package/directives.d.ts +4 -5
- package/esm2020/column-resizing/table.directive.mjs +2 -3
- package/esm2020/directives.mjs +0 -2
- package/esm2020/filtering/cell/row-filtering.module.mjs +5 -6
- package/esm2020/filtering/menu/filter-menu.module.mjs +5 -6
- package/esm2020/filtering/shared-filtering.module.mjs +5 -6
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/rendering/header/header.module.mjs +26 -27
- package/esm2020/rendering/list.component.mjs +17 -5
- package/esm2020/shared.module.mjs +6 -7
- package/esm2020/treelist.component.mjs +9 -3
- package/esm2020/treelist.module.mjs +82 -85
- package/fesm2015/progress-kendo-angular-treelist.mjs +39 -25
- package/fesm2020/progress-kendo-angular-treelist.mjs +39 -25
- package/filtering/cell/row-filtering.module.d.ts +4 -5
- package/filtering/menu/filter-menu.module.d.ts +4 -5
- package/filtering/shared-filtering.module.d.ts +9 -10
- package/package.json +15 -15
- package/rendering/header/header.module.d.ts +27 -28
- package/schematics/ngAdd/index.js +3 -3
- package/shared.module.d.ts +6 -7
- package/treelist.module.d.ts +78 -78
@@ -47,8 +47,8 @@ const packageMetadata = {
|
|
47
47
|
name: '@progress/kendo-angular-treelist',
|
48
48
|
productName: 'Kendo UI for Angular',
|
49
49
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
50
|
-
publishDate:
|
51
|
-
version: '16.6.1-develop.
|
50
|
+
publishDate: 1722947631,
|
51
|
+
version: '16.6.1-develop.2',
|
52
52
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
53
53
|
};
|
54
54
|
|
@@ -8584,12 +8584,11 @@ class TableDirective {
|
|
8584
8584
|
}
|
8585
8585
|
}
|
8586
8586
|
TableDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TableDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: ColumnResizingService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
|
8587
|
-
TableDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: TableDirective, isStandalone: true, selector: "
|
8587
|
+
TableDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: TableDirective, isStandalone: true, selector: "[kendoTreeListResizableTable]", inputs: { locked: "locked", virtualColumns: "virtualColumns" }, host: { properties: { "style.min-width": "this.minWidth" } }, ngImport: i0 });
|
8588
8588
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TableDirective, decorators: [{
|
8589
8589
|
type: Directive,
|
8590
8590
|
args: [{
|
8591
|
-
|
8592
|
-
selector: 'table',
|
8591
|
+
selector: '[kendoTreeListResizableTable]',
|
8593
8592
|
standalone: true
|
8594
8593
|
}]
|
8595
8594
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: ColumnResizingService }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { locked: [{
|
@@ -9070,6 +9069,7 @@ ListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version:
|
|
9070
9069
|
*ngIf="isLocked" [style.width.px]="lockedWidth">
|
9071
9070
|
<div role="presentation" class="k-grid-table-wrap">
|
9072
9071
|
<table
|
9072
|
+
kendoTreeListResizableTable
|
9073
9073
|
[locked]="true"
|
9074
9074
|
#lockedTable
|
9075
9075
|
class="k-table k-grid-table k-table-md"
|
@@ -9107,8 +9107,13 @@ ListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version:
|
|
9107
9107
|
[lockedWidth]="lockedWidth + 1"
|
9108
9108
|
>
|
9109
9109
|
<div role="presentation" class="k-grid-table-wrap">
|
9110
|
-
<table
|
9111
|
-
|
9110
|
+
<table
|
9111
|
+
[style.width.px]="nonLockedWidth"
|
9112
|
+
#table
|
9113
|
+
kendoTreeListResizableTable
|
9114
|
+
[virtualColumns]="virtualColumns"
|
9115
|
+
class="k-table k-grid-table k-table-md"
|
9116
|
+
role="presentation">
|
9112
9117
|
<colgroup
|
9113
9118
|
kendoTreeListColGroup
|
9114
9119
|
[columns]="$any(nonLockedColumnsToRender)">
|
@@ -9142,7 +9147,7 @@ ListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version:
|
|
9142
9147
|
</div>
|
9143
9148
|
<div *ngIf="loading" kendoTreeListLoading>
|
9144
9149
|
</div>
|
9145
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: TableDirective, selector: "
|
9150
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: TableDirective, selector: "[kendoTreeListResizableTable]", inputs: ["locked", "virtualColumns"] }, { kind: "component", type: ColGroupComponent, selector: "[kendoTreeListColGroup]", inputs: ["columns"] }, { kind: "component", type: TableBodyComponent, selector: "[kendoTreeListTableBody]", inputs: ["columns", "allColumns", "noRecordsTemplate", "view", "skip", "filterable", "noRecordsText", "isLocked", "lockedColumnsCount", "totalColumnsCount", "virtualColumns", "expandIcons", "trackBy", "totalColumns", "rowClass"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "directive", type: ResizableContainerDirective, selector: "[kendoTreeListResizableContainer]", inputs: ["lockedWidth", "kendoTreeListResizableContainer"] }, { kind: "component", type: LoadingComponent, selector: "[kendoTreeListLoading]" }] });
|
9146
9151
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ListComponent, decorators: [{
|
9147
9152
|
type: Component,
|
9148
9153
|
args: [{
|
@@ -9158,6 +9163,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
9158
9163
|
*ngIf="isLocked" [style.width.px]="lockedWidth">
|
9159
9164
|
<div role="presentation" class="k-grid-table-wrap">
|
9160
9165
|
<table
|
9166
|
+
kendoTreeListResizableTable
|
9161
9167
|
[locked]="true"
|
9162
9168
|
#lockedTable
|
9163
9169
|
class="k-table k-grid-table k-table-md"
|
@@ -9195,8 +9201,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
9195
9201
|
[lockedWidth]="lockedWidth + 1"
|
9196
9202
|
>
|
9197
9203
|
<div role="presentation" class="k-grid-table-wrap">
|
9198
|
-
<table
|
9199
|
-
|
9204
|
+
<table
|
9205
|
+
[style.width.px]="nonLockedWidth"
|
9206
|
+
#table
|
9207
|
+
kendoTreeListResizableTable
|
9208
|
+
[virtualColumns]="virtualColumns"
|
9209
|
+
class="k-table k-grid-table k-table-md"
|
9210
|
+
role="presentation">
|
9200
9211
|
<colgroup
|
9201
9212
|
kendoTreeListColGroup
|
9202
9213
|
[columns]="$any(nonLockedColumnsToRender)">
|
@@ -16548,6 +16559,7 @@ TreeListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", vers
|
|
16548
16559
|
class="k-grid-header-locked"
|
16549
16560
|
[style.width.px]="lockedWidth">
|
16550
16561
|
<table
|
16562
|
+
kendoTreeListResizableTable
|
16551
16563
|
[locked]="true"
|
16552
16564
|
role="presentation"
|
16553
16565
|
[style.width.px]="lockedWidth"
|
@@ -16579,6 +16591,7 @@ TreeListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", vers
|
|
16579
16591
|
<table
|
16580
16592
|
role="presentation"
|
16581
16593
|
[style.width.px]="nonLockedWidth"
|
16594
|
+
kendoTreeListResizableTable
|
16582
16595
|
[virtualColumns]="virtualColumns"
|
16583
16596
|
class="k-grid-header-table k-table k-table-md">
|
16584
16597
|
<colgroup
|
@@ -16635,7 +16648,8 @@ TreeListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", vers
|
|
16635
16648
|
<table
|
16636
16649
|
class="k-table k-table-md k-grid-header-table"
|
16637
16650
|
role="presentation"
|
16638
|
-
[style.table-layout]="resizable ? 'fixed' : null"
|
16651
|
+
[style.table-layout]="resizable ? 'fixed' : null"
|
16652
|
+
kendoTreeListResizableTable>
|
16639
16653
|
<colgroup
|
16640
16654
|
kendoTreeListColGroup
|
16641
16655
|
[columns]="$any(leafColumns)">
|
@@ -16702,7 +16716,7 @@ TreeListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", vers
|
|
16702
16716
|
</kendo-icon-wrapper>
|
16703
16717
|
{{hintText}}
|
16704
16718
|
</ng-template>
|
16705
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoTreeListLocalizedMessages]" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: ToolbarComponent, selector: "kendo-treelist-toolbar", inputs: ["position", "navigable"] }, { kind: "directive", type: DragTargetContainerDirective, selector: "[kendoDragTargetContainer]", inputs: ["hint", "dragTargetFilter", "dragHandle", "dragDelay", "threshold", "dragTargetId", "dragData", "dragDisabled", "mode"], outputs: ["onDragReady", "onPress", "onDragStart", "onDrag", "onRelease", "onDragEnd"], exportAs: ["kendoDragTargetContainer"] }, { kind: "directive", type: DropTargetContainerDirective, selector: "[kendoDropTargetContainer]", inputs: ["dropTargetFilter", "dropDisabled"], outputs: ["onDragEnter", "onDragOver", "onDragLeave", "onDrop"], exportAs: ["kendoDropTargetContainer"] }, { kind: "directive", type: TableDirective, selector: "
|
16719
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoTreeListLocalizedMessages]" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: ToolbarComponent, selector: "kendo-treelist-toolbar", inputs: ["position", "navigable"] }, { kind: "directive", type: DragTargetContainerDirective, selector: "[kendoDragTargetContainer]", inputs: ["hint", "dragTargetFilter", "dragHandle", "dragDelay", "threshold", "dragTargetId", "dragData", "dragDisabled", "mode"], outputs: ["onDragReady", "onPress", "onDragStart", "onDrag", "onRelease", "onDragEnd"], exportAs: ["kendoDragTargetContainer"] }, { kind: "directive", type: DropTargetContainerDirective, selector: "[kendoDropTargetContainer]", inputs: ["dropTargetFilter", "dropDisabled"], outputs: ["onDragEnter", "onDragOver", "onDragLeave", "onDrop"], exportAs: ["kendoDropTargetContainer"] }, { kind: "directive", type: TableDirective, selector: "[kendoTreeListResizableTable]", inputs: ["locked", "virtualColumns"] }, { kind: "component", type: ColGroupComponent, selector: "[kendoTreeListColGroup]", inputs: ["columns"] }, { kind: "component", type: HeaderComponent, selector: "[kendoTreeListHeader]", inputs: ["totalColumnLevels", "columns", "scrollable", "filterable", "sort", "filter", "sortable", "lockedColumnsCount", "resizable", "reorderable", "columnMenu", "columnMenuTemplate", "totalColumnsCount", "totalColumns"] }, { kind: "directive", type: ResizableContainerDirective, selector: "[kendoTreeListResizableContainer]", inputs: ["lockedWidth", "kendoTreeListResizableContainer"] }, { kind: "component", type: ListComponent, selector: "kendo-treelist-list", inputs: ["view", "total", "rowHeight", "take", "skip", "columns", "noRecordsTemplate", "filterable", "rowClass", "loading", "trackBy", "virtualColumns", "isVirtual", "expandIcons"], outputs: ["contentScroll", "pageChange", "scrollBottom"] }, { kind: "directive", type: DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { kind: "directive", type: MarqueeDirective, selector: "[kendoTreeListSelectionMarquee]" }, { kind: "component", type: TableBodyComponent, selector: "[kendoTreeListTableBody]", inputs: ["columns", "allColumns", "noRecordsTemplate", "view", "skip", "filterable", "noRecordsText", "isLocked", "lockedColumnsCount", "totalColumnsCount", "virtualColumns", "expandIcons", "trackBy", "totalColumns", "rowClass"] }, { kind: "component", type: LoadingComponent, selector: "[kendoTreeListLoading]" }, { kind: "component", type: PagerComponent, selector: "kendo-treelist-pager", inputs: ["allCount", "total", "skip", "navigable", "pageSize", "options", "template"], outputs: ["pageChange"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
16706
16720
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TreeListComponent, decorators: [{
|
16707
16721
|
type: Component,
|
16708
16722
|
args: [{
|
@@ -16973,6 +16987,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
16973
16987
|
class="k-grid-header-locked"
|
16974
16988
|
[style.width.px]="lockedWidth">
|
16975
16989
|
<table
|
16990
|
+
kendoTreeListResizableTable
|
16976
16991
|
[locked]="true"
|
16977
16992
|
role="presentation"
|
16978
16993
|
[style.width.px]="lockedWidth"
|
@@ -17004,6 +17019,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
17004
17019
|
<table
|
17005
17020
|
role="presentation"
|
17006
17021
|
[style.width.px]="nonLockedWidth"
|
17022
|
+
kendoTreeListResizableTable
|
17007
17023
|
[virtualColumns]="virtualColumns"
|
17008
17024
|
class="k-grid-header-table k-table k-table-md">
|
17009
17025
|
<colgroup
|
@@ -17060,7 +17076,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
17060
17076
|
<table
|
17061
17077
|
class="k-table k-table-md k-grid-header-table"
|
17062
17078
|
role="presentation"
|
17063
|
-
[style.table-layout]="resizable ? 'fixed' : null"
|
17079
|
+
[style.table-layout]="resizable ? 'fixed' : null"
|
17080
|
+
kendoTreeListResizableTable>
|
17064
17081
|
<colgroup
|
17065
17082
|
kendoTreeListColGroup
|
17066
17083
|
[columns]="$any(leafColumns)">
|
@@ -20793,7 +20810,6 @@ const SHARED_EXPORTS = [
|
|
20793
20810
|
TemplateContextDirective,
|
20794
20811
|
FieldAccessorPipe,
|
20795
20812
|
SpanColumnComponent,
|
20796
|
-
TableDirective,
|
20797
20813
|
LoadingComponent,
|
20798
20814
|
FilterCellOperatorsComponent,
|
20799
20815
|
CheckboxColumnComponent,
|
@@ -20985,7 +21001,7 @@ const KENDO_TREELIST = [
|
|
20985
21001
|
class TreeListModule {
|
20986
21002
|
}
|
20987
21003
|
TreeListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TreeListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
20988
|
-
TreeListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TreeListModule, imports: [TreeListComponent, ToolbarTemplateDirective, ToolbarComponent, TreeListSpacerComponent, CustomMessagesComponent, TemplateEditingDirective, ReactiveEditingDirective, InCellEditingDirective, HierarchyBindingDirective, FlatBindingDirective, ExpandableDirective, SelectableDirective, TreeListToolbarFocusableDirective, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, ColGroupComponent, ResizableContainerDirective, i2$1.TemplateContextDirective, FieldAccessorPipe, SpanColumnComponent,
|
21004
|
+
TreeListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TreeListModule, imports: [TreeListComponent, ToolbarTemplateDirective, ToolbarComponent, TreeListSpacerComponent, CustomMessagesComponent, TemplateEditingDirective, ReactiveEditingDirective, InCellEditingDirective, HierarchyBindingDirective, FlatBindingDirective, ExpandableDirective, SelectableDirective, TreeListToolbarFocusableDirective, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, ColGroupComponent, ResizableContainerDirective, i2$1.TemplateContextDirective, FieldAccessorPipe, SpanColumnComponent, LoadingComponent, FilterCellOperatorsComponent, CheckboxColumnComponent, RowReorderColumnComponent, CommandColumnComponent, CellTemplateDirective, CellComponent, NoRecordsTemplateDirective, EditTemplateDirective, EditCommandDirective, CancelCommandDirective, SaveCommandDirective, RemoveCommandDirective, AddCommandDirective, FooterTemplateDirective, HeaderComponent, HeaderTemplateDirective, ColumnHandleDirective, PagerComponent, PagerPrevButtonsComponent, PagerNextButtonsComponent, PagerNumericButtonsComponent, PagerInputComponent, PagerInfoComponent, PagerPageSizesComponent, PagerTemplateDirective, FilterRowComponent, FilterCellComponent, FilterCellTemplateDirective, StringFilterCellComponent, NumericFilterCellComponent, AutoCompleteFilterCellComponent, BooleanFilterCellComponent, FilterCellHostDirective, FilterCellWrapperComponent, DateFilterCellComponent, FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, FilterInputDirective, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, ColGroupComponent, ResizableContainerDirective, i2$1.TemplateContextDirective, FieldAccessorPipe, SpanColumnComponent, LoadingComponent, FilterCellOperatorsComponent, CheckboxColumnComponent, RowReorderColumnComponent, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuInputWrapperComponent, StringFilterMenuInputComponent, StringFilterMenuComponent, FilterMenuTemplateDirective, NumericFilterMenuComponent, NumericFilterMenuInputComponent, DateFilterMenuInputComponent, DateFilterMenuComponent, FilterMenuHostDirective, BooleanFilterMenuComponent, ColumnChooserComponent, ColumnMenuChooserComponent, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuItemContentTemplateDirective, ColumnMenuSortComponent, ColumnMenuComponent, ColumnMenuLockComponent, ColumnMenuTemplateDirective, TableDirective], exports: [TreeListComponent, ToolbarTemplateDirective, ToolbarComponent, TreeListSpacerComponent, CustomMessagesComponent, TemplateEditingDirective, ReactiveEditingDirective, InCellEditingDirective, HierarchyBindingDirective, FlatBindingDirective, ExpandableDirective, SelectableDirective, TreeListToolbarFocusableDirective, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, ColGroupComponent, ResizableContainerDirective, i2$1.TemplateContextDirective, FieldAccessorPipe, SpanColumnComponent, LoadingComponent, FilterCellOperatorsComponent, CheckboxColumnComponent, RowReorderColumnComponent, CommandColumnComponent, CellTemplateDirective, CellComponent, NoRecordsTemplateDirective, EditTemplateDirective, EditCommandDirective, CancelCommandDirective, SaveCommandDirective, RemoveCommandDirective, AddCommandDirective, FooterTemplateDirective, HeaderComponent, HeaderTemplateDirective, ColumnHandleDirective, PagerComponent, PagerPrevButtonsComponent, PagerNextButtonsComponent, PagerNumericButtonsComponent, PagerInputComponent, PagerInfoComponent, PagerPageSizesComponent, PagerTemplateDirective, FilterRowComponent, FilterCellComponent, FilterCellTemplateDirective, StringFilterCellComponent, NumericFilterCellComponent, AutoCompleteFilterCellComponent, BooleanFilterCellComponent, FilterCellHostDirective, FilterCellWrapperComponent, DateFilterCellComponent, FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, FilterInputDirective, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, ColGroupComponent, ResizableContainerDirective, i2$1.TemplateContextDirective, FieldAccessorPipe, SpanColumnComponent, LoadingComponent, FilterCellOperatorsComponent, CheckboxColumnComponent, RowReorderColumnComponent, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuInputWrapperComponent, StringFilterMenuInputComponent, StringFilterMenuComponent, FilterMenuTemplateDirective, NumericFilterMenuComponent, NumericFilterMenuInputComponent, DateFilterMenuInputComponent, DateFilterMenuComponent, FilterMenuHostDirective, BooleanFilterMenuComponent, ColumnChooserComponent, ColumnMenuChooserComponent, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuItemContentTemplateDirective, ColumnMenuSortComponent, ColumnMenuComponent, ColumnMenuLockComponent, ColumnMenuTemplateDirective] });
|
20989
21005
|
TreeListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TreeListModule, providers: [
|
20990
21006
|
IconsService,
|
20991
21007
|
ResizeBatchService,
|
@@ -21000,14 +21016,13 @@ TreeListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version:
|
|
21000
21016
|
DialogContainerService,
|
21001
21017
|
DialogService,
|
21002
21018
|
WindowService,
|
21003
|
-
WindowContainerService
|
21004
|
-
ColumnResizingService
|
21019
|
+
WindowContainerService
|
21005
21020
|
], imports: [TreeListComponent, ToolbarComponent, TreeListSpacerComponent, CustomMessagesComponent, ColumnComponent, ColumnGroupComponent, ColGroupComponent, SpanColumnComponent, LoadingComponent, FilterCellOperatorsComponent, CheckboxColumnComponent, RowReorderColumnComponent, CommandColumnComponent, CellComponent, EditCommandDirective, CancelCommandDirective, SaveCommandDirective, RemoveCommandDirective, AddCommandDirective, HeaderComponent, PagerComponent, PagerPrevButtonsComponent, PagerNextButtonsComponent, PagerNumericButtonsComponent, PagerInputComponent, PagerInfoComponent, PagerPageSizesComponent, FilterRowComponent, FilterCellComponent, StringFilterCellComponent, NumericFilterCellComponent, AutoCompleteFilterCellComponent, BooleanFilterCellComponent, FilterCellWrapperComponent, DateFilterCellComponent, FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, ColumnComponent, ColumnGroupComponent, ColGroupComponent, SpanColumnComponent, LoadingComponent, FilterCellOperatorsComponent, CheckboxColumnComponent, RowReorderColumnComponent, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuInputWrapperComponent, StringFilterMenuInputComponent, StringFilterMenuComponent, NumericFilterMenuComponent, NumericFilterMenuInputComponent, DateFilterMenuInputComponent, DateFilterMenuComponent, BooleanFilterMenuComponent, ColumnChooserComponent, ColumnMenuChooserComponent, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuSortComponent, ColumnMenuComponent, ColumnMenuLockComponent] });
|
21006
21021
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TreeListModule, decorators: [{
|
21007
21022
|
type: NgModule,
|
21008
21023
|
args: [{
|
21009
21024
|
exports: [...KENDO_TREELIST],
|
21010
|
-
imports: [...KENDO_TREELIST],
|
21025
|
+
imports: [...KENDO_TREELIST, TableDirective],
|
21011
21026
|
providers: [
|
21012
21027
|
IconsService,
|
21013
21028
|
ResizeBatchService,
|
@@ -21022,8 +21037,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
21022
21037
|
DialogContainerService,
|
21023
21038
|
DialogService,
|
21024
21039
|
WindowService,
|
21025
|
-
WindowContainerService
|
21026
|
-
ColumnResizingService
|
21040
|
+
WindowContainerService
|
21027
21041
|
]
|
21028
21042
|
}]
|
21029
21043
|
}] });
|
@@ -21036,7 +21050,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
21036
21050
|
class SharedModule {
|
21037
21051
|
}
|
21038
21052
|
SharedModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
21039
|
-
SharedModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: SharedModule, imports: [ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, ColGroupComponent, ResizableContainerDirective, i2$1.TemplateContextDirective, FieldAccessorPipe, SpanColumnComponent,
|
21053
|
+
SharedModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: SharedModule, imports: [ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, ColGroupComponent, ResizableContainerDirective, i2$1.TemplateContextDirective, FieldAccessorPipe, SpanColumnComponent, LoadingComponent, FilterCellOperatorsComponent, CheckboxColumnComponent, RowReorderColumnComponent], exports: [ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, ColGroupComponent, ResizableContainerDirective, i2$1.TemplateContextDirective, FieldAccessorPipe, SpanColumnComponent, LoadingComponent, FilterCellOperatorsComponent, CheckboxColumnComponent, RowReorderColumnComponent, DraggableModule, IconsModule] });
|
21040
21054
|
SharedModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedModule, providers: [IconsService], imports: [ColumnComponent, ColumnGroupComponent, ColGroupComponent, SpanColumnComponent, LoadingComponent, FilterCellOperatorsComponent, CheckboxColumnComponent, RowReorderColumnComponent, DraggableModule, IconsModule] });
|
21041
21055
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedModule, decorators: [{
|
21042
21056
|
type: NgModule,
|
@@ -21061,7 +21075,7 @@ const ENTRY_COMPONENTS$1 = [
|
|
21061
21075
|
class RowFilterModule {
|
21062
21076
|
}
|
21063
21077
|
RowFilterModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RowFilterModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
21064
|
-
RowFilterModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: RowFilterModule, imports: [FilterRowComponent, FilterCellComponent, FilterCellTemplateDirective, StringFilterCellComponent, NumericFilterCellComponent, AutoCompleteFilterCellComponent, BooleanFilterCellComponent, FilterCellHostDirective, FilterCellWrapperComponent, DateFilterCellComponent, FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, FilterInputDirective, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, ColGroupComponent, ResizableContainerDirective, i2$1.TemplateContextDirective, FieldAccessorPipe, SpanColumnComponent,
|
21078
|
+
RowFilterModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: RowFilterModule, imports: [FilterRowComponent, FilterCellComponent, FilterCellTemplateDirective, StringFilterCellComponent, NumericFilterCellComponent, AutoCompleteFilterCellComponent, BooleanFilterCellComponent, FilterCellHostDirective, FilterCellWrapperComponent, DateFilterCellComponent, FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, FilterInputDirective, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, ColGroupComponent, ResizableContainerDirective, i2$1.TemplateContextDirective, FieldAccessorPipe, SpanColumnComponent, LoadingComponent, FilterCellOperatorsComponent, CheckboxColumnComponent, RowReorderColumnComponent], exports: [FilterRowComponent, FilterCellComponent, FilterCellTemplateDirective, StringFilterCellComponent, NumericFilterCellComponent, AutoCompleteFilterCellComponent, BooleanFilterCellComponent, FilterCellHostDirective, FilterCellWrapperComponent, DateFilterCellComponent, FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, FilterInputDirective, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, ColGroupComponent, ResizableContainerDirective, i2$1.TemplateContextDirective, FieldAccessorPipe, SpanColumnComponent, LoadingComponent, FilterCellOperatorsComponent, CheckboxColumnComponent, RowReorderColumnComponent] });
|
21065
21079
|
RowFilterModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RowFilterModule, imports: [FilterRowComponent, FilterCellComponent, StringFilterCellComponent, NumericFilterCellComponent, AutoCompleteFilterCellComponent, BooleanFilterCellComponent, FilterCellWrapperComponent, DateFilterCellComponent, FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, ColumnComponent, ColumnGroupComponent, ColGroupComponent, SpanColumnComponent, LoadingComponent, FilterCellOperatorsComponent, CheckboxColumnComponent, RowReorderColumnComponent] });
|
21066
21080
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RowFilterModule, decorators: [{
|
21067
21081
|
type: NgModule,
|
@@ -21086,7 +21100,7 @@ const ENTRY_COMPONENTS = [
|
|
21086
21100
|
class FilterMenuModule {
|
21087
21101
|
}
|
21088
21102
|
FilterMenuModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FilterMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
21089
|
-
FilterMenuModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: FilterMenuModule, imports: [FilterMenuComponent, FilterMenuContainerComponent, FilterMenuInputWrapperComponent, StringFilterMenuInputComponent, StringFilterMenuComponent, FilterMenuTemplateDirective, NumericFilterMenuComponent, NumericFilterMenuInputComponent, DateFilterMenuInputComponent, DateFilterMenuComponent, FilterMenuHostDirective, BooleanFilterMenuComponent, FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, FilterInputDirective, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, ColGroupComponent, ResizableContainerDirective, i2$1.TemplateContextDirective, FieldAccessorPipe, SpanColumnComponent,
|
21103
|
+
FilterMenuModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: FilterMenuModule, imports: [FilterMenuComponent, FilterMenuContainerComponent, FilterMenuInputWrapperComponent, StringFilterMenuInputComponent, StringFilterMenuComponent, FilterMenuTemplateDirective, NumericFilterMenuComponent, NumericFilterMenuInputComponent, DateFilterMenuInputComponent, DateFilterMenuComponent, FilterMenuHostDirective, BooleanFilterMenuComponent, FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, FilterInputDirective, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, ColGroupComponent, ResizableContainerDirective, i2$1.TemplateContextDirective, FieldAccessorPipe, SpanColumnComponent, LoadingComponent, FilterCellOperatorsComponent, CheckboxColumnComponent, RowReorderColumnComponent], exports: [FilterMenuComponent, FilterMenuContainerComponent, FilterMenuInputWrapperComponent, StringFilterMenuInputComponent, StringFilterMenuComponent, FilterMenuTemplateDirective, NumericFilterMenuComponent, NumericFilterMenuInputComponent, DateFilterMenuInputComponent, DateFilterMenuComponent, FilterMenuHostDirective, BooleanFilterMenuComponent, FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, FilterInputDirective, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, ColGroupComponent, ResizableContainerDirective, i2$1.TemplateContextDirective, FieldAccessorPipe, SpanColumnComponent, LoadingComponent, FilterCellOperatorsComponent, CheckboxColumnComponent, RowReorderColumnComponent] });
|
21090
21104
|
FilterMenuModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FilterMenuModule, imports: [FilterMenuComponent, FilterMenuContainerComponent, FilterMenuInputWrapperComponent, StringFilterMenuInputComponent, StringFilterMenuComponent, NumericFilterMenuComponent, NumericFilterMenuInputComponent, DateFilterMenuInputComponent, DateFilterMenuComponent, BooleanFilterMenuComponent, FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, ColumnComponent, ColumnGroupComponent, ColGroupComponent, SpanColumnComponent, LoadingComponent, FilterCellOperatorsComponent, CheckboxColumnComponent, RowReorderColumnComponent] });
|
21091
21105
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FilterMenuModule, decorators: [{
|
21092
21106
|
type: NgModule,
|
@@ -21123,7 +21137,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
21123
21137
|
class HeaderModule {
|
21124
21138
|
}
|
21125
21139
|
HeaderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HeaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
21126
|
-
HeaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: HeaderModule, imports: [HeaderComponent, HeaderTemplateDirective, ColumnHandleDirective, FilterRowComponent, FilterCellComponent, FilterCellTemplateDirective, StringFilterCellComponent, NumericFilterCellComponent, AutoCompleteFilterCellComponent, BooleanFilterCellComponent, FilterCellHostDirective, FilterCellWrapperComponent, DateFilterCellComponent, FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, FilterInputDirective, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, ColGroupComponent, ResizableContainerDirective, i2$1.TemplateContextDirective, FieldAccessorPipe, SpanColumnComponent,
|
21140
|
+
HeaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: HeaderModule, imports: [HeaderComponent, HeaderTemplateDirective, ColumnHandleDirective, FilterRowComponent, FilterCellComponent, FilterCellTemplateDirective, StringFilterCellComponent, NumericFilterCellComponent, AutoCompleteFilterCellComponent, BooleanFilterCellComponent, FilterCellHostDirective, FilterCellWrapperComponent, DateFilterCellComponent, FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, FilterInputDirective, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, ColGroupComponent, ResizableContainerDirective, i2$1.TemplateContextDirective, FieldAccessorPipe, SpanColumnComponent, LoadingComponent, FilterCellOperatorsComponent, CheckboxColumnComponent, RowReorderColumnComponent, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuInputWrapperComponent, StringFilterMenuInputComponent, StringFilterMenuComponent, FilterMenuTemplateDirective, NumericFilterMenuComponent, NumericFilterMenuInputComponent, DateFilterMenuInputComponent, DateFilterMenuComponent, FilterMenuHostDirective, BooleanFilterMenuComponent, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, ColGroupComponent, ResizableContainerDirective, i2$1.TemplateContextDirective, FieldAccessorPipe, SpanColumnComponent, LoadingComponent, FilterCellOperatorsComponent, CheckboxColumnComponent, RowReorderColumnComponent, ColumnChooserComponent, ColumnMenuChooserComponent, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuItemContentTemplateDirective, ColumnMenuSortComponent, ColumnMenuComponent, ColumnMenuLockComponent, ColumnMenuTemplateDirective, DraggableColumnDirective, DropTargetDirective], exports: [HeaderComponent, HeaderTemplateDirective, ColumnHandleDirective] });
|
21127
21141
|
HeaderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HeaderModule, imports: [HeaderComponent, FilterRowComponent, FilterCellComponent, StringFilterCellComponent, NumericFilterCellComponent, AutoCompleteFilterCellComponent, BooleanFilterCellComponent, FilterCellWrapperComponent, DateFilterCellComponent, FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, ColumnComponent, ColumnGroupComponent, ColGroupComponent, SpanColumnComponent, LoadingComponent, FilterCellOperatorsComponent, CheckboxColumnComponent, RowReorderColumnComponent, FilterMenuComponent, FilterMenuContainerComponent, FilterMenuInputWrapperComponent, StringFilterMenuInputComponent, StringFilterMenuComponent, NumericFilterMenuComponent, NumericFilterMenuInputComponent, DateFilterMenuInputComponent, DateFilterMenuComponent, BooleanFilterMenuComponent, ColumnComponent, ColumnGroupComponent, ColGroupComponent, SpanColumnComponent, LoadingComponent, FilterCellOperatorsComponent, CheckboxColumnComponent, RowReorderColumnComponent, ColumnChooserComponent, ColumnMenuChooserComponent, ColumnMenuFilterComponent, ColumnMenuItemComponent, ColumnMenuSortComponent, ColumnMenuComponent, ColumnMenuLockComponent] });
|
21128
21142
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HeaderModule, decorators: [{
|
21129
21143
|
type: NgModule,
|
@@ -21229,7 +21243,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
21229
21243
|
class SharedFilterModule {
|
21230
21244
|
}
|
21231
21245
|
SharedFilterModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedFilterModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
21232
|
-
SharedFilterModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: SharedFilterModule, imports: [FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, FilterInputDirective, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, ColGroupComponent, ResizableContainerDirective, i2$1.TemplateContextDirective, FieldAccessorPipe, SpanColumnComponent,
|
21246
|
+
SharedFilterModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: SharedFilterModule, imports: [FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, FilterInputDirective, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, ColGroupComponent, ResizableContainerDirective, i2$1.TemplateContextDirective, FieldAccessorPipe, SpanColumnComponent, LoadingComponent, FilterCellOperatorsComponent, CheckboxColumnComponent, RowReorderColumnComponent], exports: [FilterCellOperatorsComponent, ContainsFilterOperatorComponent, DoesNotContainFilterOperatorComponent, EndsWithFilterOperatorComponent, EqualFilterOperatorComponent, IsEmptyFilterOperatorComponent, IsNotEmptyFilterOperatorComponent, IsNotNullFilterOperatorComponent, IsNullFilterOperatorComponent, NotEqualFilterOperatorComponent, StartsWithFilterOperatorComponent, GreaterFilterOperatorComponent, GreaterOrEqualToFilterOperatorComponent, LessFilterOperatorComponent, LessOrEqualToFilterOperatorComponent, AfterFilterOperatorComponent, AfterEqFilterOperatorComponent, BeforeEqFilterOperatorComponent, BeforeFilterOperatorComponent, FilterInputDirective, ColumnComponent, ColumnGroupComponent, LogicalCellDirective, LogicalRowDirective, FocusableDirective, ColGroupComponent, ResizableContainerDirective, i2$1.TemplateContextDirective, FieldAccessorPipe, SpanColumnComponent, LoadingComponent, FilterCellOperatorsComponent, CheckboxColumnComponent, RowReorderColumnComponent, DropDownListModule, AutoCompleteModule, InputsModule, DatePickerModule, PopupModule, ButtonModule] });
|
21233
21247
|
SharedFilterModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedFilterModule, providers: [
|
21234
21248
|
PopupService,
|
21235
21249
|
ResizeBatchService,
|
@@ -43,16 +43,15 @@ import * as i37 from "../../layout/resizable.directive";
|
|
43
43
|
import * as i38 from "@progress/kendo-angular-common";
|
44
44
|
import * as i39 from "../../rendering/common/field-accessor.pipe";
|
45
45
|
import * as i40 from "../../columns/span-column.component";
|
46
|
-
import * as i41 from "../../
|
47
|
-
import * as i42 from "../../
|
48
|
-
import * as i43 from "../../columns/
|
49
|
-
import * as i44 from "../../columns/rowreorder-column.component";
|
46
|
+
import * as i41 from "../../rendering/common/loading.component";
|
47
|
+
import * as i42 from "../../columns/checkbox-column.component";
|
48
|
+
import * as i43 from "../../columns/rowreorder-column.component";
|
50
49
|
/**
|
51
50
|
* @hidden
|
52
51
|
* @deprecated
|
53
52
|
*/
|
54
53
|
export declare class RowFilterModule {
|
55
54
|
static ɵfac: i0.ɵɵFactoryDeclaration<RowFilterModule, never>;
|
56
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<RowFilterModule, never, [typeof i1.FilterRowComponent, typeof i2.FilterCellComponent, typeof i3.FilterCellTemplateDirective, typeof i4.StringFilterCellComponent, typeof i5.NumericFilterCellComponent, typeof i6.AutoCompleteFilterCellComponent, typeof i7.BooleanFilterCellComponent, typeof i8.FilterCellHostDirective, typeof i9.FilterCellWrapperComponent, typeof i10.DateFilterCellComponent, typeof i11.FilterCellOperatorsComponent, typeof i12.ContainsFilterOperatorComponent, typeof i13.DoesNotContainFilterOperatorComponent, typeof i14.EndsWithFilterOperatorComponent, typeof i15.EqualFilterOperatorComponent, typeof i16.IsEmptyFilterOperatorComponent, typeof i17.IsNotEmptyFilterOperatorComponent, typeof i18.IsNotNullFilterOperatorComponent, typeof i19.IsNullFilterOperatorComponent, typeof i20.NotEqualFilterOperatorComponent, typeof i21.StartsWithFilterOperatorComponent, typeof i22.GreaterFilterOperatorComponent, typeof i23.GreaterOrEqualToFilterOperatorComponent, typeof i24.LessFilterOperatorComponent, typeof i25.LessOrEqualToFilterOperatorComponent, typeof i26.AfterFilterOperatorComponent, typeof i27.AfterEqFilterOperatorComponent, typeof i28.BeforeEqFilterOperatorComponent, typeof i29.BeforeFilterOperatorComponent, typeof i30.FilterInputDirective, typeof i31.ColumnComponent, typeof i32.ColumnGroupComponent, typeof i33.LogicalCellDirective, typeof i34.LogicalRowDirective, typeof i35.FocusableDirective, typeof i36.ColGroupComponent, typeof i37.ResizableContainerDirective, typeof i38.TemplateContextDirective, typeof i39.FieldAccessorPipe, typeof i40.SpanColumnComponent, typeof i41.
|
55
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<RowFilterModule, never, [typeof i1.FilterRowComponent, typeof i2.FilterCellComponent, typeof i3.FilterCellTemplateDirective, typeof i4.StringFilterCellComponent, typeof i5.NumericFilterCellComponent, typeof i6.AutoCompleteFilterCellComponent, typeof i7.BooleanFilterCellComponent, typeof i8.FilterCellHostDirective, typeof i9.FilterCellWrapperComponent, typeof i10.DateFilterCellComponent, typeof i11.FilterCellOperatorsComponent, typeof i12.ContainsFilterOperatorComponent, typeof i13.DoesNotContainFilterOperatorComponent, typeof i14.EndsWithFilterOperatorComponent, typeof i15.EqualFilterOperatorComponent, typeof i16.IsEmptyFilterOperatorComponent, typeof i17.IsNotEmptyFilterOperatorComponent, typeof i18.IsNotNullFilterOperatorComponent, typeof i19.IsNullFilterOperatorComponent, typeof i20.NotEqualFilterOperatorComponent, typeof i21.StartsWithFilterOperatorComponent, typeof i22.GreaterFilterOperatorComponent, typeof i23.GreaterOrEqualToFilterOperatorComponent, typeof i24.LessFilterOperatorComponent, typeof i25.LessOrEqualToFilterOperatorComponent, typeof i26.AfterFilterOperatorComponent, typeof i27.AfterEqFilterOperatorComponent, typeof i28.BeforeEqFilterOperatorComponent, typeof i29.BeforeFilterOperatorComponent, typeof i30.FilterInputDirective, typeof i31.ColumnComponent, typeof i32.ColumnGroupComponent, typeof i33.LogicalCellDirective, typeof i34.LogicalRowDirective, typeof i35.FocusableDirective, typeof i36.ColGroupComponent, typeof i37.ResizableContainerDirective, typeof i38.TemplateContextDirective, typeof i39.FieldAccessorPipe, typeof i40.SpanColumnComponent, typeof i41.LoadingComponent, typeof i11.FilterCellOperatorsComponent, typeof i42.CheckboxColumnComponent, typeof i43.RowReorderColumnComponent], [typeof i1.FilterRowComponent, typeof i2.FilterCellComponent, typeof i3.FilterCellTemplateDirective, typeof i4.StringFilterCellComponent, typeof i5.NumericFilterCellComponent, typeof i6.AutoCompleteFilterCellComponent, typeof i7.BooleanFilterCellComponent, typeof i8.FilterCellHostDirective, typeof i9.FilterCellWrapperComponent, typeof i10.DateFilterCellComponent, typeof i11.FilterCellOperatorsComponent, typeof i12.ContainsFilterOperatorComponent, typeof i13.DoesNotContainFilterOperatorComponent, typeof i14.EndsWithFilterOperatorComponent, typeof i15.EqualFilterOperatorComponent, typeof i16.IsEmptyFilterOperatorComponent, typeof i17.IsNotEmptyFilterOperatorComponent, typeof i18.IsNotNullFilterOperatorComponent, typeof i19.IsNullFilterOperatorComponent, typeof i20.NotEqualFilterOperatorComponent, typeof i21.StartsWithFilterOperatorComponent, typeof i22.GreaterFilterOperatorComponent, typeof i23.GreaterOrEqualToFilterOperatorComponent, typeof i24.LessFilterOperatorComponent, typeof i25.LessOrEqualToFilterOperatorComponent, typeof i26.AfterFilterOperatorComponent, typeof i27.AfterEqFilterOperatorComponent, typeof i28.BeforeEqFilterOperatorComponent, typeof i29.BeforeFilterOperatorComponent, typeof i30.FilterInputDirective, typeof i31.ColumnComponent, typeof i32.ColumnGroupComponent, typeof i33.LogicalCellDirective, typeof i34.LogicalRowDirective, typeof i35.FocusableDirective, typeof i36.ColGroupComponent, typeof i37.ResizableContainerDirective, typeof i38.TemplateContextDirective, typeof i39.FieldAccessorPipe, typeof i40.SpanColumnComponent, typeof i41.LoadingComponent, typeof i11.FilterCellOperatorsComponent, typeof i42.CheckboxColumnComponent, typeof i43.RowReorderColumnComponent]>;
|
57
56
|
static ɵinj: i0.ɵɵInjectorDeclaration<RowFilterModule>;
|
58
57
|
}
|
@@ -45,16 +45,15 @@ import * as i39 from "../../layout/resizable.directive";
|
|
45
45
|
import * as i40 from "@progress/kendo-angular-common";
|
46
46
|
import * as i41 from "../../rendering/common/field-accessor.pipe";
|
47
47
|
import * as i42 from "../../columns/span-column.component";
|
48
|
-
import * as i43 from "../../
|
49
|
-
import * as i44 from "../../
|
50
|
-
import * as i45 from "../../columns/
|
51
|
-
import * as i46 from "../../columns/rowreorder-column.component";
|
48
|
+
import * as i43 from "../../rendering/common/loading.component";
|
49
|
+
import * as i44 from "../../columns/checkbox-column.component";
|
50
|
+
import * as i45 from "../../columns/rowreorder-column.component";
|
52
51
|
/**
|
53
52
|
* @hidden
|
54
53
|
* @deprecated
|
55
54
|
*/
|
56
55
|
export declare class FilterMenuModule {
|
57
56
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilterMenuModule, never>;
|
58
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FilterMenuModule, never, [typeof i1.FilterMenuComponent, typeof i2.FilterMenuContainerComponent, typeof i3.FilterMenuInputWrapperComponent, typeof i4.StringFilterMenuInputComponent, typeof i5.StringFilterMenuComponent, typeof i6.FilterMenuTemplateDirective, typeof i7.NumericFilterMenuComponent, typeof i8.NumericFilterMenuInputComponent, typeof i9.DateFilterMenuInputComponent, typeof i10.DateFilterMenuComponent, typeof i11.FilterMenuHostDirective, typeof i12.BooleanFilterMenuComponent, typeof i13.FilterCellOperatorsComponent, typeof i14.ContainsFilterOperatorComponent, typeof i15.DoesNotContainFilterOperatorComponent, typeof i16.EndsWithFilterOperatorComponent, typeof i17.EqualFilterOperatorComponent, typeof i18.IsEmptyFilterOperatorComponent, typeof i19.IsNotEmptyFilterOperatorComponent, typeof i20.IsNotNullFilterOperatorComponent, typeof i21.IsNullFilterOperatorComponent, typeof i22.NotEqualFilterOperatorComponent, typeof i23.StartsWithFilterOperatorComponent, typeof i24.GreaterFilterOperatorComponent, typeof i25.GreaterOrEqualToFilterOperatorComponent, typeof i26.LessFilterOperatorComponent, typeof i27.LessOrEqualToFilterOperatorComponent, typeof i28.AfterFilterOperatorComponent, typeof i29.AfterEqFilterOperatorComponent, typeof i30.BeforeEqFilterOperatorComponent, typeof i31.BeforeFilterOperatorComponent, typeof i32.FilterInputDirective, typeof i33.ColumnComponent, typeof i34.ColumnGroupComponent, typeof i35.LogicalCellDirective, typeof i36.LogicalRowDirective, typeof i37.FocusableDirective, typeof i38.ColGroupComponent, typeof i39.ResizableContainerDirective, typeof i40.TemplateContextDirective, typeof i41.FieldAccessorPipe, typeof i42.SpanColumnComponent, typeof i43.
|
57
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FilterMenuModule, never, [typeof i1.FilterMenuComponent, typeof i2.FilterMenuContainerComponent, typeof i3.FilterMenuInputWrapperComponent, typeof i4.StringFilterMenuInputComponent, typeof i5.StringFilterMenuComponent, typeof i6.FilterMenuTemplateDirective, typeof i7.NumericFilterMenuComponent, typeof i8.NumericFilterMenuInputComponent, typeof i9.DateFilterMenuInputComponent, typeof i10.DateFilterMenuComponent, typeof i11.FilterMenuHostDirective, typeof i12.BooleanFilterMenuComponent, typeof i13.FilterCellOperatorsComponent, typeof i14.ContainsFilterOperatorComponent, typeof i15.DoesNotContainFilterOperatorComponent, typeof i16.EndsWithFilterOperatorComponent, typeof i17.EqualFilterOperatorComponent, typeof i18.IsEmptyFilterOperatorComponent, typeof i19.IsNotEmptyFilterOperatorComponent, typeof i20.IsNotNullFilterOperatorComponent, typeof i21.IsNullFilterOperatorComponent, typeof i22.NotEqualFilterOperatorComponent, typeof i23.StartsWithFilterOperatorComponent, typeof i24.GreaterFilterOperatorComponent, typeof i25.GreaterOrEqualToFilterOperatorComponent, typeof i26.LessFilterOperatorComponent, typeof i27.LessOrEqualToFilterOperatorComponent, typeof i28.AfterFilterOperatorComponent, typeof i29.AfterEqFilterOperatorComponent, typeof i30.BeforeEqFilterOperatorComponent, typeof i31.BeforeFilterOperatorComponent, typeof i32.FilterInputDirective, typeof i33.ColumnComponent, typeof i34.ColumnGroupComponent, typeof i35.LogicalCellDirective, typeof i36.LogicalRowDirective, typeof i37.FocusableDirective, typeof i38.ColGroupComponent, typeof i39.ResizableContainerDirective, typeof i40.TemplateContextDirective, typeof i41.FieldAccessorPipe, typeof i42.SpanColumnComponent, typeof i43.LoadingComponent, typeof i13.FilterCellOperatorsComponent, typeof i44.CheckboxColumnComponent, typeof i45.RowReorderColumnComponent], [typeof i1.FilterMenuComponent, typeof i2.FilterMenuContainerComponent, typeof i3.FilterMenuInputWrapperComponent, typeof i4.StringFilterMenuInputComponent, typeof i5.StringFilterMenuComponent, typeof i6.FilterMenuTemplateDirective, typeof i7.NumericFilterMenuComponent, typeof i8.NumericFilterMenuInputComponent, typeof i9.DateFilterMenuInputComponent, typeof i10.DateFilterMenuComponent, typeof i11.FilterMenuHostDirective, typeof i12.BooleanFilterMenuComponent, typeof i13.FilterCellOperatorsComponent, typeof i14.ContainsFilterOperatorComponent, typeof i15.DoesNotContainFilterOperatorComponent, typeof i16.EndsWithFilterOperatorComponent, typeof i17.EqualFilterOperatorComponent, typeof i18.IsEmptyFilterOperatorComponent, typeof i19.IsNotEmptyFilterOperatorComponent, typeof i20.IsNotNullFilterOperatorComponent, typeof i21.IsNullFilterOperatorComponent, typeof i22.NotEqualFilterOperatorComponent, typeof i23.StartsWithFilterOperatorComponent, typeof i24.GreaterFilterOperatorComponent, typeof i25.GreaterOrEqualToFilterOperatorComponent, typeof i26.LessFilterOperatorComponent, typeof i27.LessOrEqualToFilterOperatorComponent, typeof i28.AfterFilterOperatorComponent, typeof i29.AfterEqFilterOperatorComponent, typeof i30.BeforeEqFilterOperatorComponent, typeof i31.BeforeFilterOperatorComponent, typeof i32.FilterInputDirective, typeof i33.ColumnComponent, typeof i34.ColumnGroupComponent, typeof i35.LogicalCellDirective, typeof i36.LogicalRowDirective, typeof i37.FocusableDirective, typeof i38.ColGroupComponent, typeof i39.ResizableContainerDirective, typeof i40.TemplateContextDirective, typeof i41.FieldAccessorPipe, typeof i42.SpanColumnComponent, typeof i43.LoadingComponent, typeof i13.FilterCellOperatorsComponent, typeof i44.CheckboxColumnComponent, typeof i45.RowReorderColumnComponent]>;
|
59
58
|
static ɵinj: i0.ɵɵInjectorDeclaration<FilterMenuModule>;
|
60
59
|
}
|
@@ -33,21 +33,20 @@ import * as i27 from "../layout/resizable.directive";
|
|
33
33
|
import * as i28 from "@progress/kendo-angular-common";
|
34
34
|
import * as i29 from "../rendering/common/field-accessor.pipe";
|
35
35
|
import * as i30 from "../columns/span-column.component";
|
36
|
-
import * as i31 from "../
|
37
|
-
import * as i32 from "../
|
38
|
-
import * as i33 from "../columns/
|
39
|
-
import * as i34 from "
|
40
|
-
import * as i35 from "@progress/kendo-angular-
|
41
|
-
import * as i36 from "@progress/kendo-angular-
|
42
|
-
import * as i37 from "@progress/kendo-angular-
|
43
|
-
import * as i38 from "@progress/kendo-angular-
|
44
|
-
import * as i39 from "@progress/kendo-angular-buttons";
|
36
|
+
import * as i31 from "../rendering/common/loading.component";
|
37
|
+
import * as i32 from "../columns/checkbox-column.component";
|
38
|
+
import * as i33 from "../columns/rowreorder-column.component";
|
39
|
+
import * as i34 from "@progress/kendo-angular-dropdowns";
|
40
|
+
import * as i35 from "@progress/kendo-angular-inputs";
|
41
|
+
import * as i36 from "@progress/kendo-angular-dateinputs";
|
42
|
+
import * as i37 from "@progress/kendo-angular-popup";
|
43
|
+
import * as i38 from "@progress/kendo-angular-buttons";
|
45
44
|
/**
|
46
45
|
* @hidden
|
47
46
|
* @deprecated
|
48
47
|
*/
|
49
48
|
export declare class SharedFilterModule {
|
50
49
|
static ɵfac: i0.ɵɵFactoryDeclaration<SharedFilterModule, never>;
|
51
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedFilterModule, never, [typeof i1.FilterCellOperatorsComponent, typeof i2.ContainsFilterOperatorComponent, typeof i3.DoesNotContainFilterOperatorComponent, typeof i4.EndsWithFilterOperatorComponent, typeof i5.EqualFilterOperatorComponent, typeof i6.IsEmptyFilterOperatorComponent, typeof i7.IsNotEmptyFilterOperatorComponent, typeof i8.IsNotNullFilterOperatorComponent, typeof i9.IsNullFilterOperatorComponent, typeof i10.NotEqualFilterOperatorComponent, typeof i11.StartsWithFilterOperatorComponent, typeof i12.GreaterFilterOperatorComponent, typeof i13.GreaterOrEqualToFilterOperatorComponent, typeof i14.LessFilterOperatorComponent, typeof i15.LessOrEqualToFilterOperatorComponent, typeof i16.AfterFilterOperatorComponent, typeof i17.AfterEqFilterOperatorComponent, typeof i18.BeforeEqFilterOperatorComponent, typeof i19.BeforeFilterOperatorComponent, typeof i20.FilterInputDirective, typeof i21.ColumnComponent, typeof i22.ColumnGroupComponent, typeof i23.LogicalCellDirective, typeof i24.LogicalRowDirective, typeof i25.FocusableDirective, typeof i26.ColGroupComponent, typeof i27.ResizableContainerDirective, typeof i28.TemplateContextDirective, typeof i29.FieldAccessorPipe, typeof i30.SpanColumnComponent, typeof i31.
|
50
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedFilterModule, never, [typeof i1.FilterCellOperatorsComponent, typeof i2.ContainsFilterOperatorComponent, typeof i3.DoesNotContainFilterOperatorComponent, typeof i4.EndsWithFilterOperatorComponent, typeof i5.EqualFilterOperatorComponent, typeof i6.IsEmptyFilterOperatorComponent, typeof i7.IsNotEmptyFilterOperatorComponent, typeof i8.IsNotNullFilterOperatorComponent, typeof i9.IsNullFilterOperatorComponent, typeof i10.NotEqualFilterOperatorComponent, typeof i11.StartsWithFilterOperatorComponent, typeof i12.GreaterFilterOperatorComponent, typeof i13.GreaterOrEqualToFilterOperatorComponent, typeof i14.LessFilterOperatorComponent, typeof i15.LessOrEqualToFilterOperatorComponent, typeof i16.AfterFilterOperatorComponent, typeof i17.AfterEqFilterOperatorComponent, typeof i18.BeforeEqFilterOperatorComponent, typeof i19.BeforeFilterOperatorComponent, typeof i20.FilterInputDirective, typeof i21.ColumnComponent, typeof i22.ColumnGroupComponent, typeof i23.LogicalCellDirective, typeof i24.LogicalRowDirective, typeof i25.FocusableDirective, typeof i26.ColGroupComponent, typeof i27.ResizableContainerDirective, typeof i28.TemplateContextDirective, typeof i29.FieldAccessorPipe, typeof i30.SpanColumnComponent, typeof i31.LoadingComponent, typeof i1.FilterCellOperatorsComponent, typeof i32.CheckboxColumnComponent, typeof i33.RowReorderColumnComponent], [typeof i1.FilterCellOperatorsComponent, typeof i2.ContainsFilterOperatorComponent, typeof i3.DoesNotContainFilterOperatorComponent, typeof i4.EndsWithFilterOperatorComponent, typeof i5.EqualFilterOperatorComponent, typeof i6.IsEmptyFilterOperatorComponent, typeof i7.IsNotEmptyFilterOperatorComponent, typeof i8.IsNotNullFilterOperatorComponent, typeof i9.IsNullFilterOperatorComponent, typeof i10.NotEqualFilterOperatorComponent, typeof i11.StartsWithFilterOperatorComponent, typeof i12.GreaterFilterOperatorComponent, typeof i13.GreaterOrEqualToFilterOperatorComponent, typeof i14.LessFilterOperatorComponent, typeof i15.LessOrEqualToFilterOperatorComponent, typeof i16.AfterFilterOperatorComponent, typeof i17.AfterEqFilterOperatorComponent, typeof i18.BeforeEqFilterOperatorComponent, typeof i19.BeforeFilterOperatorComponent, typeof i20.FilterInputDirective, typeof i21.ColumnComponent, typeof i22.ColumnGroupComponent, typeof i23.LogicalCellDirective, typeof i24.LogicalRowDirective, typeof i25.FocusableDirective, typeof i26.ColGroupComponent, typeof i27.ResizableContainerDirective, typeof i28.TemplateContextDirective, typeof i29.FieldAccessorPipe, typeof i30.SpanColumnComponent, typeof i31.LoadingComponent, typeof i1.FilterCellOperatorsComponent, typeof i32.CheckboxColumnComponent, typeof i33.RowReorderColumnComponent, typeof i34.DropDownListModule, typeof i34.AutoCompleteModule, typeof i35.InputsModule, typeof i36.DatePickerModule, typeof i37.PopupModule, typeof i38.ButtonModule]>;
|
52
51
|
static ɵinj: i0.ɵɵInjectorDeclaration<SharedFilterModule>;
|
53
52
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@progress/kendo-angular-treelist",
|
3
|
-
"version": "16.6.1-develop.
|
3
|
+
"version": "16.6.1-develop.2",
|
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,24 +31,24 @@
|
|
31
31
|
"@progress/kendo-data-query": "^1.0.0",
|
32
32
|
"@progress/kendo-drawing": "^1.19.0",
|
33
33
|
"@progress/kendo-licensing": "^1.0.2",
|
34
|
-
"@progress/kendo-angular-buttons": "16.6.1-develop.
|
35
|
-
"@progress/kendo-angular-common": "16.6.1-develop.
|
36
|
-
"@progress/kendo-angular-dateinputs": "16.6.1-develop.
|
37
|
-
"@progress/kendo-angular-dropdowns": "16.6.1-develop.
|
38
|
-
"@progress/kendo-angular-excel-export": "16.6.1-develop.
|
39
|
-
"@progress/kendo-angular-icons": "16.6.1-develop.
|
40
|
-
"@progress/kendo-angular-inputs": "16.6.1-develop.
|
41
|
-
"@progress/kendo-angular-intl": "16.6.1-develop.
|
42
|
-
"@progress/kendo-angular-l10n": "16.6.1-develop.
|
43
|
-
"@progress/kendo-angular-label": "16.6.1-develop.
|
44
|
-
"@progress/kendo-angular-pdf-export": "16.6.1-develop.
|
45
|
-
"@progress/kendo-angular-popup": "16.6.1-develop.
|
46
|
-
"@progress/kendo-angular-utils": "16.6.1-develop.
|
34
|
+
"@progress/kendo-angular-buttons": "16.6.1-develop.2",
|
35
|
+
"@progress/kendo-angular-common": "16.6.1-develop.2",
|
36
|
+
"@progress/kendo-angular-dateinputs": "16.6.1-develop.2",
|
37
|
+
"@progress/kendo-angular-dropdowns": "16.6.1-develop.2",
|
38
|
+
"@progress/kendo-angular-excel-export": "16.6.1-develop.2",
|
39
|
+
"@progress/kendo-angular-icons": "16.6.1-develop.2",
|
40
|
+
"@progress/kendo-angular-inputs": "16.6.1-develop.2",
|
41
|
+
"@progress/kendo-angular-intl": "16.6.1-develop.2",
|
42
|
+
"@progress/kendo-angular-l10n": "16.6.1-develop.2",
|
43
|
+
"@progress/kendo-angular-label": "16.6.1-develop.2",
|
44
|
+
"@progress/kendo-angular-pdf-export": "16.6.1-develop.2",
|
45
|
+
"@progress/kendo-angular-popup": "16.6.1-develop.2",
|
46
|
+
"@progress/kendo-angular-utils": "16.6.1-develop.2",
|
47
47
|
"rxjs": "^6.5.3 || ^7.0.0"
|
48
48
|
},
|
49
49
|
"dependencies": {
|
50
50
|
"tslib": "^2.3.1",
|
51
|
-
"@progress/kendo-angular-schematics": "16.6.1-develop.
|
51
|
+
"@progress/kendo-angular-schematics": "16.6.1-develop.2",
|
52
52
|
"@progress/kendo-common": "^0.2.0",
|
53
53
|
"@progress/kendo-file-saver": "^1.0.0"
|
54
54
|
},
|
@@ -46,39 +46,38 @@ import * as i40 from "../../layout/resizable.directive";
|
|
46
46
|
import * as i41 from "@progress/kendo-angular-common";
|
47
47
|
import * as i42 from "../common/field-accessor.pipe";
|
48
48
|
import * as i43 from "../../columns/span-column.component";
|
49
|
-
import * as i44 from "
|
50
|
-
import * as i45 from "
|
51
|
-
import * as i46 from "../../columns/
|
52
|
-
import * as i47 from "../../
|
53
|
-
import * as i48 from "../../filtering/menu/filter-menu.component";
|
54
|
-
import * as i49 from "../../filtering/menu/filter-menu-
|
55
|
-
import * as i50 from "../../filtering/menu/filter-menu-input
|
56
|
-
import * as i51 from "../../filtering/menu/string-filter-menu
|
57
|
-
import * as i52 from "../../filtering/menu/
|
58
|
-
import * as i53 from "../../filtering/menu/filter-menu
|
59
|
-
import * as i54 from "../../filtering/menu/numeric-filter-menu.component";
|
60
|
-
import * as i55 from "../../filtering/menu/
|
61
|
-
import * as i56 from "../../filtering/menu/date-filter-menu
|
62
|
-
import * as i57 from "../../filtering/menu/
|
63
|
-
import * as i58 from "../../filtering/menu/filter-menu
|
64
|
-
import * as i59 from "../../
|
65
|
-
import * as i60 from "../../column-menu/column-chooser.component";
|
66
|
-
import * as i61 from "../../column-menu/column-menu-
|
67
|
-
import * as i62 from "../../column-menu/column-menu-
|
68
|
-
import * as i63 from "../../column-menu/column-menu-item.
|
69
|
-
import * as i64 from "../../column-menu/column-menu-
|
70
|
-
import * as i65 from "../../column-menu/column-menu
|
71
|
-
import * as i66 from "../../column-menu/column-menu.component";
|
72
|
-
import * as i67 from "../../column-menu/column-menu-
|
73
|
-
import * as i68 from "../../
|
74
|
-
import * as i69 from "../../dragdrop/
|
75
|
-
import * as i70 from "../../dragdrop/drop-target.directive";
|
49
|
+
import * as i44 from "../common/loading.component";
|
50
|
+
import * as i45 from "../../columns/checkbox-column.component";
|
51
|
+
import * as i46 from "../../columns/rowreorder-column.component";
|
52
|
+
import * as i47 from "../../filtering/menu/filter-menu.component";
|
53
|
+
import * as i48 from "../../filtering/menu/filter-menu-container.component";
|
54
|
+
import * as i49 from "../../filtering/menu/filter-menu-input-wrapper.component";
|
55
|
+
import * as i50 from "../../filtering/menu/string-filter-menu-input.component";
|
56
|
+
import * as i51 from "../../filtering/menu/string-filter-menu.component";
|
57
|
+
import * as i52 from "../../filtering/menu/filter-menu-template.directive";
|
58
|
+
import * as i53 from "../../filtering/menu/numeric-filter-menu.component";
|
59
|
+
import * as i54 from "../../filtering/menu/numeric-filter-menu-input.component";
|
60
|
+
import * as i55 from "../../filtering/menu/date-filter-menu-input.component";
|
61
|
+
import * as i56 from "../../filtering/menu/date-filter-menu.component";
|
62
|
+
import * as i57 from "../../filtering/menu/filter-menu-host.directive";
|
63
|
+
import * as i58 from "../../filtering/menu/boolean-filter-menu.component";
|
64
|
+
import * as i59 from "../../column-menu/column-chooser.component";
|
65
|
+
import * as i60 from "../../column-menu/column-menu-chooser.component";
|
66
|
+
import * as i61 from "../../column-menu/column-menu-filter.component";
|
67
|
+
import * as i62 from "../../column-menu/column-menu-item.component";
|
68
|
+
import * as i63 from "../../column-menu/column-menu-item-content-template.directive";
|
69
|
+
import * as i64 from "../../column-menu/column-menu-sort.component";
|
70
|
+
import * as i65 from "../../column-menu/column-menu.component";
|
71
|
+
import * as i66 from "../../column-menu/column-menu-lock.component";
|
72
|
+
import * as i67 from "../../column-menu/column-menu-template.directive";
|
73
|
+
import * as i68 from "../../dragdrop/draggable-column.directive";
|
74
|
+
import * as i69 from "../../dragdrop/drop-target.directive";
|
76
75
|
/**
|
77
76
|
* @hidden
|
78
77
|
* @deprecated
|
79
78
|
*/
|
80
79
|
export declare class HeaderModule {
|
81
80
|
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderModule, never>;
|
82
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<HeaderModule, never, [typeof i1.HeaderComponent, typeof i2.HeaderTemplateDirective, typeof i3.ColumnHandleDirective, typeof i4.FilterRowComponent, typeof i5.FilterCellComponent, typeof i6.FilterCellTemplateDirective, typeof i7.StringFilterCellComponent, typeof i8.NumericFilterCellComponent, typeof i9.AutoCompleteFilterCellComponent, typeof i10.BooleanFilterCellComponent, typeof i11.FilterCellHostDirective, typeof i12.FilterCellWrapperComponent, typeof i13.DateFilterCellComponent, typeof i14.FilterCellOperatorsComponent, typeof i15.ContainsFilterOperatorComponent, typeof i16.DoesNotContainFilterOperatorComponent, typeof i17.EndsWithFilterOperatorComponent, typeof i18.EqualFilterOperatorComponent, typeof i19.IsEmptyFilterOperatorComponent, typeof i20.IsNotEmptyFilterOperatorComponent, typeof i21.IsNotNullFilterOperatorComponent, typeof i22.IsNullFilterOperatorComponent, typeof i23.NotEqualFilterOperatorComponent, typeof i24.StartsWithFilterOperatorComponent, typeof i25.GreaterFilterOperatorComponent, typeof i26.GreaterOrEqualToFilterOperatorComponent, typeof i27.LessFilterOperatorComponent, typeof i28.LessOrEqualToFilterOperatorComponent, typeof i29.AfterFilterOperatorComponent, typeof i30.AfterEqFilterOperatorComponent, typeof i31.BeforeEqFilterOperatorComponent, typeof i32.BeforeFilterOperatorComponent, typeof i33.FilterInputDirective, typeof i34.ColumnComponent, typeof i35.ColumnGroupComponent, typeof i36.LogicalCellDirective, typeof i37.LogicalRowDirective, typeof i38.FocusableDirective, typeof i39.ColGroupComponent, typeof i40.ResizableContainerDirective, typeof i41.TemplateContextDirective, typeof i42.FieldAccessorPipe, typeof i43.SpanColumnComponent, typeof i44.
|
81
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HeaderModule, never, [typeof i1.HeaderComponent, typeof i2.HeaderTemplateDirective, typeof i3.ColumnHandleDirective, typeof i4.FilterRowComponent, typeof i5.FilterCellComponent, typeof i6.FilterCellTemplateDirective, typeof i7.StringFilterCellComponent, typeof i8.NumericFilterCellComponent, typeof i9.AutoCompleteFilterCellComponent, typeof i10.BooleanFilterCellComponent, typeof i11.FilterCellHostDirective, typeof i12.FilterCellWrapperComponent, typeof i13.DateFilterCellComponent, typeof i14.FilterCellOperatorsComponent, typeof i15.ContainsFilterOperatorComponent, typeof i16.DoesNotContainFilterOperatorComponent, typeof i17.EndsWithFilterOperatorComponent, typeof i18.EqualFilterOperatorComponent, typeof i19.IsEmptyFilterOperatorComponent, typeof i20.IsNotEmptyFilterOperatorComponent, typeof i21.IsNotNullFilterOperatorComponent, typeof i22.IsNullFilterOperatorComponent, typeof i23.NotEqualFilterOperatorComponent, typeof i24.StartsWithFilterOperatorComponent, typeof i25.GreaterFilterOperatorComponent, typeof i26.GreaterOrEqualToFilterOperatorComponent, typeof i27.LessFilterOperatorComponent, typeof i28.LessOrEqualToFilterOperatorComponent, typeof i29.AfterFilterOperatorComponent, typeof i30.AfterEqFilterOperatorComponent, typeof i31.BeforeEqFilterOperatorComponent, typeof i32.BeforeFilterOperatorComponent, typeof i33.FilterInputDirective, typeof i34.ColumnComponent, typeof i35.ColumnGroupComponent, typeof i36.LogicalCellDirective, typeof i37.LogicalRowDirective, typeof i38.FocusableDirective, typeof i39.ColGroupComponent, typeof i40.ResizableContainerDirective, typeof i41.TemplateContextDirective, typeof i42.FieldAccessorPipe, typeof i43.SpanColumnComponent, typeof i44.LoadingComponent, typeof i14.FilterCellOperatorsComponent, typeof i45.CheckboxColumnComponent, typeof i46.RowReorderColumnComponent, typeof i47.FilterMenuComponent, typeof i48.FilterMenuContainerComponent, typeof i49.FilterMenuInputWrapperComponent, typeof i50.StringFilterMenuInputComponent, typeof i51.StringFilterMenuComponent, typeof i52.FilterMenuTemplateDirective, typeof i53.NumericFilterMenuComponent, typeof i54.NumericFilterMenuInputComponent, typeof i55.DateFilterMenuInputComponent, typeof i56.DateFilterMenuComponent, typeof i57.FilterMenuHostDirective, typeof i58.BooleanFilterMenuComponent, typeof i34.ColumnComponent, typeof i35.ColumnGroupComponent, typeof i36.LogicalCellDirective, typeof i37.LogicalRowDirective, typeof i38.FocusableDirective, typeof i39.ColGroupComponent, typeof i40.ResizableContainerDirective, typeof i41.TemplateContextDirective, typeof i42.FieldAccessorPipe, typeof i43.SpanColumnComponent, typeof i44.LoadingComponent, typeof i14.FilterCellOperatorsComponent, typeof i45.CheckboxColumnComponent, typeof i46.RowReorderColumnComponent, typeof i59.ColumnChooserComponent, typeof i60.ColumnMenuChooserComponent, typeof i61.ColumnMenuFilterComponent, typeof i62.ColumnMenuItemComponent, typeof i63.ColumnMenuItemContentTemplateDirective, typeof i64.ColumnMenuSortComponent, typeof i65.ColumnMenuComponent, typeof i66.ColumnMenuLockComponent, typeof i67.ColumnMenuTemplateDirective, typeof i68.DraggableColumnDirective, typeof i69.DropTargetDirective], [typeof i1.HeaderComponent, typeof i2.HeaderTemplateDirective, typeof i3.ColumnHandleDirective]>;
|
83
82
|
static ɵinj: i0.ɵɵInjectorDeclaration<HeaderModule>;
|
84
83
|
}
|