@progress/kendo-angular-grid 17.0.0-develop.34 → 17.0.0-develop.36
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/{pager → common}/pager-settings.d.ts +13 -0
- package/directives.d.ts +2 -18
- package/esm2022/directives.mjs +2 -28
- package/esm2022/grid.component.mjs +172 -37
- package/esm2022/grid.module.mjs +91 -97
- package/esm2022/index.mjs +0 -13
- package/esm2022/localization/messages.mjs +13 -7
- package/esm2022/navigation/navigation.service.mjs +2 -2
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/rendering/common/spacer.component.mjs +2 -2
- package/fesm2022/progress-kendo-angular-grid.mjs +353 -1716
- package/grid.component.d.ts +4 -5
- package/grid.module.d.ts +85 -94
- package/index.d.ts +1 -16
- package/localization/messages.d.ts +10 -6
- package/navigation/navigation.service.d.ts +1 -1
- package/package.json +18 -17
- package/rendering/common/spacer.component.d.ts +1 -1
- package/schematics/ngAdd/index.js +4 -4
- package/esm2022/pager/pager-context.service.mjs +0 -42
- package/esm2022/pager/pager-dropdown.directive.mjs +0 -40
- package/esm2022/pager/pager-element.component.mjs +0 -116
- package/esm2022/pager/pager-info.component.mjs +0 -77
- package/esm2022/pager/pager-input.component.mjs +0 -146
- package/esm2022/pager/pager-input.directive.mjs +0 -32
- package/esm2022/pager/pager-next-buttons.component.mjs +0 -115
- package/esm2022/pager/pager-numeric-buttons.component.mjs +0 -267
- package/esm2022/pager/pager-page-sizes.component.mjs +0 -147
- package/esm2022/pager/pager-prev-buttons.component.mjs +0 -117
- package/esm2022/pager/pager-template.directive.mjs +0 -49
- package/esm2022/pager/pager.component.mjs +0 -471
- package/esm2022/pager/pager.module.mjs +0 -51
- package/esm2022/pager/pagesize-item.interface.mjs +0 -5
- package/pager/pager-context.service.d.ts +0 -30
- package/pager/pager-dropdown.directive.d.ts +0 -18
- package/pager/pager-element.component.d.ts +0 -79
- package/pager/pager-info.component.d.ts +0 -43
- package/pager/pager-input.component.d.ts +0 -45
- package/pager/pager-input.directive.d.ts +0 -18
- package/pager/pager-next-buttons.component.d.ts +0 -28
- package/pager/pager-numeric-buttons.component.d.ts +0 -52
- package/pager/pager-page-sizes.component.d.ts +0 -49
- package/pager/pager-prev-buttons.component.d.ts +0 -28
- package/pager/pager-template.directive.d.ts +0 -38
- package/pager/pager.component.d.ts +0 -80
- package/pager/pager.module.d.ts +0 -37
- package/pager/pagesize-item.interface.d.ts +0 -14
- /package/esm2022/{pager → common}/pager-settings.mjs +0 -0
package/grid.component.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ import { SortDescriptor, GroupDescriptor, CompositeFilterDescriptor } from '@pro
|
|
|
10
10
|
import { DetailTemplateDirective } from './rendering/details/detail-template.directive';
|
|
11
11
|
import { ScrollMode } from './scrolling/scrollmode';
|
|
12
12
|
import { SortSettings } from './columns/sort-settings';
|
|
13
|
-
import { PagerSettings } from './
|
|
13
|
+
import { PagerSettings } from './common/pager-settings';
|
|
14
14
|
import { BrowserSupportService } from './layout/browser-support.service';
|
|
15
15
|
import { GridDataResult, DataCollection } from './data/data.collection';
|
|
16
16
|
import { SelectionService } from './selection/selection.service';
|
|
@@ -28,7 +28,6 @@ import { NoRecordsTemplateDirective } from './rendering/no-records-template.dire
|
|
|
28
28
|
import { ColumnBase } from './columns/column-base';
|
|
29
29
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
30
30
|
import { FilterService } from './filtering/filter.service';
|
|
31
|
-
import { PagerTemplateDirective } from './pager/pager-template.directive';
|
|
32
31
|
import { PDFService } from './pdf/pdf.service';
|
|
33
32
|
import { PDFExportEvent } from './pdf/pdf-export-event';
|
|
34
33
|
import { ResponsiveService } from "./layout/responsive.service";
|
|
@@ -80,6 +79,7 @@ import { RowReorderEvent } from './row-reordering/types';
|
|
|
80
79
|
import { DragTargetContainerDirective, DragTargetDataFn, DropTargetContainerDirective } from '@progress/kendo-angular-utils';
|
|
81
80
|
import { RowReorderService } from './row-reordering/row-reorder.service';
|
|
82
81
|
import { StatusBarTemplateDirective } from './aggregates/status-bar-template.directive';
|
|
82
|
+
import { PagerTemplateDirective } from '@progress/kendo-angular-pager';
|
|
83
83
|
import * as i0 from "@angular/core";
|
|
84
84
|
/**
|
|
85
85
|
* Represents the Kendo UI for Angular Data Grid component.
|
|
@@ -192,8 +192,6 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
|
|
|
192
192
|
* The descriptors by which the data will be grouped ([see example]({% slug grouping_grid %})).
|
|
193
193
|
*/
|
|
194
194
|
set group(value: Array<GroupDescriptor> | null | undefined);
|
|
195
|
-
/**
|
|
196
|
-
*/
|
|
197
195
|
get group(): Array<GroupDescriptor> | null | undefined;
|
|
198
196
|
/**
|
|
199
197
|
* If set to `true`, the grid will render only the columns in the current viewport.
|
|
@@ -259,6 +257,7 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
|
|
|
259
257
|
* @default false
|
|
260
258
|
*/
|
|
261
259
|
pageable: PagerSettings | boolean;
|
|
260
|
+
get normalizedPageableSettings(): any;
|
|
262
261
|
/**
|
|
263
262
|
* If set to `true`, the user can group the Grid by dragging the column header cells ([see example]({% slug grouping_grid %})).
|
|
264
263
|
* @default false
|
|
@@ -712,7 +711,7 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
|
|
|
712
711
|
/**
|
|
713
712
|
* @hidden
|
|
714
713
|
*/
|
|
715
|
-
messageFor(token: string)
|
|
714
|
+
messageFor: (token: string) => string;
|
|
716
715
|
/**
|
|
717
716
|
* Switches the specified table row in the edit mode ([see example]({% slug inline_editing_grid %}#toc-editing-records-1)).
|
|
718
717
|
*
|
package/grid.module.d.ts
CHANGED
|
@@ -44,99 +44,90 @@ import * as i38 from "./rendering/header/header-template.directive";
|
|
|
44
44
|
import * as i39 from "./column-resizing/column-handle.directive";
|
|
45
45
|
import * as i40 from "./selection/selectall-checkbox.directive";
|
|
46
46
|
import * as i41 from "./rendering/footer/footer.component";
|
|
47
|
-
import * as i42 from "
|
|
48
|
-
import * as i43 from "
|
|
49
|
-
import * as i44 from "./
|
|
50
|
-
import * as i45 from "./
|
|
51
|
-
import * as i46 from "./
|
|
52
|
-
import * as i47 from "./
|
|
53
|
-
import * as i48 from "./
|
|
54
|
-
import * as i49 from "./
|
|
55
|
-
import * as i50 from "./
|
|
56
|
-
import * as i51 from "./
|
|
57
|
-
import * as i52 from "./filtering/filter-
|
|
58
|
-
import * as i53 from "./filtering/cell/filter-cell.component";
|
|
59
|
-
import * as i54 from "./filtering/cell/filter-cell-
|
|
60
|
-
import * as i55 from "./filtering/
|
|
61
|
-
import * as i56 from "./filtering/
|
|
62
|
-
import * as i57 from "./filtering/
|
|
63
|
-
import * as i58 from "./filtering/
|
|
64
|
-
import * as i59 from "./filtering/
|
|
65
|
-
import * as i60 from "./filtering/
|
|
66
|
-
import * as i61 from "./filtering/
|
|
67
|
-
import * as i62 from "./filtering/
|
|
68
|
-
import * as i63 from "./filtering/operators/
|
|
69
|
-
import * as i64 from "./filtering/operators/
|
|
70
|
-
import * as i65 from "./filtering/operators/
|
|
71
|
-
import * as i66 from "./filtering/operators/
|
|
72
|
-
import * as i67 from "./filtering/operators/
|
|
73
|
-
import * as i68 from "./filtering/operators/
|
|
74
|
-
import * as i69 from "./filtering/operators/
|
|
75
|
-
import * as i70 from "./filtering/operators/
|
|
76
|
-
import * as i71 from "./filtering/operators/
|
|
77
|
-
import * as i72 from "./filtering/operators/
|
|
78
|
-
import * as i73 from "./filtering/
|
|
79
|
-
import * as i74 from "./filtering/
|
|
80
|
-
import * as i75 from "./filtering/
|
|
81
|
-
import * as i76 from "./filtering/
|
|
82
|
-
import * as i77 from "./filtering/
|
|
83
|
-
import * as i78 from "./filtering/
|
|
84
|
-
import * as i79 from "./filtering/
|
|
85
|
-
import * as i80 from "./filtering/
|
|
86
|
-
import * as i81 from "./filtering/filter-input.
|
|
87
|
-
import * as i82 from "./filtering/menu/filter-menu.component";
|
|
88
|
-
import * as i83 from "./filtering/menu/filter-menu
|
|
89
|
-
import * as i84 from "./filtering/menu/filter-menu-
|
|
90
|
-
import * as i85 from "./filtering/menu/
|
|
91
|
-
import * as i86 from "./filtering/menu/
|
|
92
|
-
import * as i87 from "./filtering/menu/filter-
|
|
93
|
-
import * as i88 from "./
|
|
94
|
-
import * as i89 from "./
|
|
95
|
-
import * as i90 from "./
|
|
96
|
-
import * as i91 from "./
|
|
97
|
-
import * as i92 from "./
|
|
98
|
-
import * as i93 from "./
|
|
99
|
-
import * as i94 from "./
|
|
100
|
-
import * as i95 from "./
|
|
101
|
-
import * as i96 from "./column-menu/column-
|
|
102
|
-
import * as i97 from "./column-menu/column-
|
|
103
|
-
import * as i98 from "./column-menu/column-
|
|
104
|
-
import * as i99 from "./column-menu/column-menu-
|
|
105
|
-
import * as i100 from "./column-menu/column-menu-
|
|
106
|
-
import * as i101 from "./column-menu/column-menu-
|
|
107
|
-
import * as i102 from "./column-menu/column-menu-
|
|
108
|
-
import * as i103 from "./column-menu/column-menu-
|
|
109
|
-
import * as i104 from "./column-menu/column-menu.component";
|
|
110
|
-
import * as i105 from "./
|
|
111
|
-
import * as i106 from "./
|
|
112
|
-
import * as i107 from "./
|
|
113
|
-
import * as i108 from "./
|
|
114
|
-
import * as i109 from "./
|
|
115
|
-
import * as i110 from "./
|
|
116
|
-
import * as i111 from "./
|
|
117
|
-
import * as i112 from "./
|
|
118
|
-
import * as i113 from "./
|
|
119
|
-
import * as i114 from "./
|
|
120
|
-
import * as i115 from "./
|
|
121
|
-
import * as i116 from "./
|
|
122
|
-
import * as i117 from "./
|
|
123
|
-
import * as i118 from "./
|
|
124
|
-
import * as i119 from "./
|
|
125
|
-
import * as i120 from "./
|
|
126
|
-
import * as i121 from "./
|
|
127
|
-
import * as i122 from "./
|
|
128
|
-
import * as i123 from "./
|
|
129
|
-
import * as i124 from "./
|
|
130
|
-
import * as i125 from "./
|
|
131
|
-
import * as i126 from "./grouping/group-scroll-binding.directive";
|
|
132
|
-
import * as i127 from "./selection/marquee.directive";
|
|
133
|
-
import * as i128 from "./rendering/common/spacer.component";
|
|
134
|
-
import * as i129 from "./rendering/toolbar/toolbar-focusable.directive";
|
|
135
|
-
import * as i130 from "./aggregates/status-bar.component";
|
|
136
|
-
import * as i131 from "./aggregates/status-bar-template.directive";
|
|
137
|
-
import * as i132 from "./common/clipboard.directive";
|
|
138
|
-
import * as i133 from "./column-resizing/table.directive";
|
|
139
|
-
import * as i134 from "@progress/kendo-angular-toolbar";
|
|
47
|
+
import * as i42 from "@progress/kendo-angular-pager";
|
|
48
|
+
import * as i43 from "@progress/kendo-angular-toolbar";
|
|
49
|
+
import * as i44 from "./filtering/filter-row.component";
|
|
50
|
+
import * as i45 from "./filtering/cell/filter-cell.component";
|
|
51
|
+
import * as i46 from "./filtering/cell/filter-cell-template.directive";
|
|
52
|
+
import * as i47 from "./filtering/cell/string-filter-cell.component";
|
|
53
|
+
import * as i48 from "./filtering/cell/numeric-filter-cell.component";
|
|
54
|
+
import * as i49 from "./filtering/cell/autocomplete-filter-cell.component";
|
|
55
|
+
import * as i50 from "./filtering/cell/boolean-filter-cell.component";
|
|
56
|
+
import * as i51 from "./filtering/cell/filter-cell-host.directive";
|
|
57
|
+
import * as i52 from "./filtering/cell/filter-cell-wrapper.component";
|
|
58
|
+
import * as i53 from "./filtering/cell/date-filter-cell.component";
|
|
59
|
+
import * as i54 from "./filtering/cell/filter-cell-operators.component";
|
|
60
|
+
import * as i55 from "./filtering/operators/contains-filter-operator.component";
|
|
61
|
+
import * as i56 from "./filtering/operators/not-contains-filter-operator.component";
|
|
62
|
+
import * as i57 from "./filtering/operators/ends-with-filter-operator.component";
|
|
63
|
+
import * as i58 from "./filtering/operators/eq-filter-operator.component";
|
|
64
|
+
import * as i59 from "./filtering/operators/is-empty-filter-operator.component";
|
|
65
|
+
import * as i60 from "./filtering/operators/is-not-empty-filter-operator.component";
|
|
66
|
+
import * as i61 from "./filtering/operators/is-not-null-filter-operator.component";
|
|
67
|
+
import * as i62 from "./filtering/operators/isnull-filter-operator.component";
|
|
68
|
+
import * as i63 from "./filtering/operators/neq-filter-operator.component";
|
|
69
|
+
import * as i64 from "./filtering/operators/starts-with-filter-operator.component";
|
|
70
|
+
import * as i65 from "./filtering/operators/gt-filter-operator.component";
|
|
71
|
+
import * as i66 from "./filtering/operators/gte-filter-operator.component";
|
|
72
|
+
import * as i67 from "./filtering/operators/lt-filter-operator.component";
|
|
73
|
+
import * as i68 from "./filtering/operators/lte-filter-operator.component";
|
|
74
|
+
import * as i69 from "./filtering/operators/after-filter-operator.component";
|
|
75
|
+
import * as i70 from "./filtering/operators/after-eq-filter-operator.component";
|
|
76
|
+
import * as i71 from "./filtering/operators/before-eq-filter-operator.component";
|
|
77
|
+
import * as i72 from "./filtering/operators/before-filter-operator.component";
|
|
78
|
+
import * as i73 from "./filtering/filter-input.directive";
|
|
79
|
+
import * as i74 from "./filtering/menu/filter-menu.component";
|
|
80
|
+
import * as i75 from "./filtering/menu/filter-menu-container.component";
|
|
81
|
+
import * as i76 from "./filtering/menu/filter-menu-input-wrapper.component";
|
|
82
|
+
import * as i77 from "./filtering/menu/string-filter-menu-input.component";
|
|
83
|
+
import * as i78 from "./filtering/menu/string-filter-menu.component";
|
|
84
|
+
import * as i79 from "./filtering/menu/filter-menu-template.directive";
|
|
85
|
+
import * as i80 from "./filtering/menu/numeric-filter-menu.component";
|
|
86
|
+
import * as i81 from "./filtering/menu/numeric-filter-menu-input.component";
|
|
87
|
+
import * as i82 from "./filtering/menu/date-filter-menu-input.component";
|
|
88
|
+
import * as i83 from "./filtering/menu/date-filter-menu.component";
|
|
89
|
+
import * as i84 from "./filtering/menu/filter-menu-host.directive";
|
|
90
|
+
import * as i85 from "./filtering/menu/boolean-filter-menu.component";
|
|
91
|
+
import * as i86 from "./filtering/menu/filter-menu-dropdownlist.directive";
|
|
92
|
+
import * as i87 from "./filtering/menu/filter-radio-button.directive";
|
|
93
|
+
import * as i88 from "./column-menu/column-chooser-item-checked.directive";
|
|
94
|
+
import * as i89 from "./column-menu/column-list.component";
|
|
95
|
+
import * as i90 from "./column-menu/column-chooser.component";
|
|
96
|
+
import * as i91 from "./column-menu/column-menu-chooser.component";
|
|
97
|
+
import * as i92 from "./column-menu/column-menu-filter.component";
|
|
98
|
+
import * as i93 from "./column-menu/column-menu-item.component";
|
|
99
|
+
import * as i94 from "./column-menu/column-menu-item-content-template.directive";
|
|
100
|
+
import * as i95 from "./column-menu/column-menu-sort.component";
|
|
101
|
+
import * as i96 from "./column-menu/column-menu.component";
|
|
102
|
+
import * as i97 from "./column-menu/column-menu-lock.component";
|
|
103
|
+
import * as i98 from "./column-menu/column-menu-template.directive";
|
|
104
|
+
import * as i99 from "./column-menu/column-menu-container.component";
|
|
105
|
+
import * as i100 from "./column-menu/column-menu-item.directive";
|
|
106
|
+
import * as i101 from "./column-menu/column-menu-stick.component";
|
|
107
|
+
import * as i102 from "./column-menu/column-menu-position.component";
|
|
108
|
+
import * as i103 from "./column-menu/column-menu-autosize.component";
|
|
109
|
+
import * as i104 from "./column-menu/column-menu-autosize-all.component";
|
|
110
|
+
import * as i105 from "./grid.component";
|
|
111
|
+
import * as i106 from "./rendering/list.component";
|
|
112
|
+
import * as i107 from "./rendering/toolbar/toolbar.component";
|
|
113
|
+
import * as i108 from "./localization/localized-messages.directive";
|
|
114
|
+
import * as i109 from "./localization/custom-messages.component";
|
|
115
|
+
import * as i110 from "./databinding.directive";
|
|
116
|
+
import * as i111 from "./rendering/toolbar/toolbar-template.directive";
|
|
117
|
+
import * as i112 from "./selection/selection.directive";
|
|
118
|
+
import * as i113 from "./editing-directives/template-editing.directive";
|
|
119
|
+
import * as i114 from "./editing-directives/reactive-editing.directive";
|
|
120
|
+
import * as i115 from "./editing-directives/in-cell-editing.directive";
|
|
121
|
+
import * as i116 from "./rendering/details-expand.directive";
|
|
122
|
+
import * as i117 from "./rendering/groups-expand.directive";
|
|
123
|
+
import * as i118 from "./grouping/group-scroll-binding.directive";
|
|
124
|
+
import * as i119 from "./selection/marquee.directive";
|
|
125
|
+
import * as i120 from "./rendering/common/spacer.component";
|
|
126
|
+
import * as i121 from "./rendering/toolbar/toolbar-focusable.directive";
|
|
127
|
+
import * as i122 from "./aggregates/status-bar.component";
|
|
128
|
+
import * as i123 from "./aggregates/status-bar-template.directive";
|
|
129
|
+
import * as i124 from "./common/clipboard.directive";
|
|
130
|
+
import * as i125 from "./column-resizing/table.directive";
|
|
140
131
|
/**
|
|
141
132
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
142
133
|
* definition for the Grid component.
|
|
@@ -160,6 +151,6 @@ import * as i134 from "@progress/kendo-angular-toolbar";
|
|
|
160
151
|
*/
|
|
161
152
|
export declare class GridModule {
|
|
162
153
|
static ɵfac: i0.ɵɵFactoryDeclaration<GridModule, never>;
|
|
163
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<GridModule, never, [typeof i1.GroupHeaderTemplateDirective, typeof i2.GroupHeaderColumnTemplateDirective, typeof i3.GroupFooterTemplateDirective, typeof i4.GroupHeaderComponent, typeof i5.GroupPanelComponent, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i20.CommandColumnComponent, typeof i21.CheckboxColumnComponent, typeof i22.SelectionCheckboxDirective, typeof i23.CellTemplateDirective, typeof i24.EditTemplateDirective, typeof i25.TableBodyComponent, typeof i26.NoRecordsTemplateDirective, typeof i27.CellComponent, typeof i28.EditCommandDirective, typeof i29.CancelCommandDirective, typeof i30.SaveCommandDirective, typeof i31.RemoveCommandDirective, typeof i32.AddCommandDirective, typeof i33.AddCommandToolbarDirective, typeof i34.CellLoadingTemplateDirective, typeof i35.LoadingTemplateDirective, typeof i36.RowReorderColumnComponent, typeof i37.HeaderComponent, typeof i38.HeaderTemplateDirective, typeof i39.ColumnHandleDirective, typeof i40.SelectAllCheckboxDirective, typeof i41.FooterComponent, typeof i42.PagerComponent, typeof i43.PagerPrevButtonsComponent, typeof i44.PagerNextButtonsComponent, typeof i45.PagerNumericButtonsComponent, typeof i46.PagerInputComponent, typeof i47.PagerInfoComponent, typeof i48.PagerPageSizesComponent, typeof i49.PagerTemplateDirective, typeof i50.PagerDropDownListDirective, typeof i51.PagerInputDirective, typeof i52.FilterRowComponent, typeof i53.FilterCellComponent, typeof i54.FilterCellTemplateDirective, typeof i55.StringFilterCellComponent, typeof i56.NumericFilterCellComponent, typeof i57.AutoCompleteFilterCellComponent, typeof i58.BooleanFilterCellComponent, typeof i59.FilterCellHostDirective, typeof i60.FilterCellWrapperComponent, typeof i61.DateFilterCellComponent, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i62.FilterCellOperatorsComponent, typeof i63.ContainsFilterOperatorComponent, typeof i64.DoesNotContainFilterOperatorComponent, typeof i65.EndsWithFilterOperatorComponent, typeof i66.EqualFilterOperatorComponent, typeof i67.IsEmptyFilterOperatorComponent, typeof i68.IsNotEmptyFilterOperatorComponent, typeof i69.IsNotNullFilterOperatorComponent, typeof i70.IsNullFilterOperatorComponent, typeof i71.NotEqualFilterOperatorComponent, typeof i72.StartsWithFilterOperatorComponent, typeof i73.GreaterFilterOperatorComponent, typeof i74.GreaterOrEqualToFilterOperatorComponent, typeof i75.LessFilterOperatorComponent, typeof i76.LessOrEqualToFilterOperatorComponent, typeof i77.AfterFilterOperatorComponent, typeof i78.AfterEqFilterOperatorComponent, typeof i79.BeforeEqFilterOperatorComponent, typeof i80.BeforeFilterOperatorComponent, typeof i81.FilterInputDirective, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i62.FilterCellOperatorsComponent, typeof i63.ContainsFilterOperatorComponent, typeof i64.DoesNotContainFilterOperatorComponent, typeof i65.EndsWithFilterOperatorComponent, typeof i66.EqualFilterOperatorComponent, typeof i67.IsEmptyFilterOperatorComponent, typeof i68.IsNotEmptyFilterOperatorComponent, typeof i69.IsNotNullFilterOperatorComponent, typeof i70.IsNullFilterOperatorComponent, typeof i71.NotEqualFilterOperatorComponent, typeof i72.StartsWithFilterOperatorComponent, typeof i73.GreaterFilterOperatorComponent, typeof i74.GreaterOrEqualToFilterOperatorComponent, typeof i75.LessFilterOperatorComponent, typeof i76.LessOrEqualToFilterOperatorComponent, typeof i77.AfterFilterOperatorComponent, typeof i78.AfterEqFilterOperatorComponent, typeof i79.BeforeEqFilterOperatorComponent, typeof i80.BeforeFilterOperatorComponent, typeof i81.FilterInputDirective, typeof i82.FilterMenuComponent, typeof i83.FilterMenuContainerComponent, typeof i84.FilterMenuInputWrapperComponent, typeof i85.StringFilterMenuInputComponent, typeof i86.StringFilterMenuComponent, typeof i87.FilterMenuTemplateDirective, typeof i88.NumericFilterMenuComponent, typeof i89.NumericFilterMenuInputComponent, typeof i90.DateFilterMenuInputComponent, typeof i91.DateFilterMenuComponent, typeof i92.FilterMenuHostDirective, typeof i93.BooleanFilterMenuComponent, typeof i94.FilterMenuDropDownListDirective, typeof i95.BooleanFilterRadioButtonDirective, typeof i96.ColumnMenuChooserItemCheckedDirective, typeof i97.ColumnListComponent, typeof i98.ColumnChooserComponent, typeof i99.ColumnMenuChooserComponent, typeof i100.ColumnMenuFilterComponent, typeof i101.ColumnMenuItemComponent, typeof i102.ColumnMenuItemContentTemplateDirective, typeof i103.ColumnMenuSortComponent, typeof i104.ColumnMenuComponent, typeof i105.ColumnMenuLockComponent, typeof i106.ColumnMenuTemplateDirective, typeof i107.ColumnMenuContainerComponent, typeof i108.ColumnMenuItemDirective, typeof i109.ColumnMenuStickComponent, typeof i110.ColumnMenuPositionComponent, typeof i111.ColumnMenuAutoSizeColumnComponent, typeof i112.ColumnMenuAutoSizeAllColumnsComponent, typeof i113.GridComponent, typeof i114.ListComponent, typeof i115.ToolbarComponent, typeof i116.LocalizedMessagesDirective, typeof i117.CustomMessagesComponent, typeof i118.DataBindingDirective, typeof i119.ToolbarTemplateDirective, typeof i120.SelectionDirective, typeof i121.TemplateEditingDirective, typeof i122.ReactiveEditingDirective, typeof i123.InCellEditingDirective, typeof i124.ExpandDetailsDirective, typeof i125.ExpandGroupDirective, typeof i126.GroupBindingDirective, typeof i127.GridMarqueeDirective, typeof i128.GridSpacerComponent, typeof i129.GridToolbarFocusableDirective, typeof i130.StatusBarComponent, typeof i131.StatusBarTemplateDirective, typeof i132.GridClipboardDirective, typeof i133.TableDirective], [typeof i113.GridComponent, typeof i119.ToolbarTemplateDirective, typeof i115.ToolbarComponent, typeof i128.GridSpacerComponent, typeof i131.StatusBarTemplateDirective, typeof i118.DataBindingDirective, typeof i120.SelectionDirective, typeof i117.CustomMessagesComponent, typeof i126.GroupBindingDirective, typeof i121.TemplateEditingDirective, typeof i122.ReactiveEditingDirective, typeof i123.InCellEditingDirective, typeof i124.ExpandDetailsDirective, typeof i125.ExpandGroupDirective, typeof i129.GridToolbarFocusableDirective, typeof i1.GroupHeaderTemplateDirective, typeof i2.GroupHeaderColumnTemplateDirective, typeof i3.GroupFooterTemplateDirective, typeof i4.GroupHeaderComponent, typeof i5.GroupPanelComponent, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i20.CommandColumnComponent, typeof i21.CheckboxColumnComponent, typeof i22.SelectionCheckboxDirective, typeof i23.CellTemplateDirective, typeof i24.EditTemplateDirective, typeof i25.TableBodyComponent, typeof i26.NoRecordsTemplateDirective, typeof i27.CellComponent, typeof i28.EditCommandDirective, typeof i29.CancelCommandDirective, typeof i30.SaveCommandDirective, typeof i31.RemoveCommandDirective, typeof i32.AddCommandDirective, typeof i33.AddCommandToolbarDirective, typeof i34.CellLoadingTemplateDirective, typeof i35.LoadingTemplateDirective, typeof i36.RowReorderColumnComponent, typeof i37.HeaderComponent, typeof i38.HeaderTemplateDirective, typeof i39.ColumnHandleDirective, typeof i40.SelectAllCheckboxDirective, typeof i42.PagerComponent, typeof i43.PagerPrevButtonsComponent, typeof i44.PagerNextButtonsComponent, typeof i45.PagerNumericButtonsComponent, typeof i46.PagerInputComponent, typeof i47.PagerInfoComponent, typeof i48.PagerPageSizesComponent, typeof i49.PagerTemplateDirective, typeof i50.PagerDropDownListDirective, typeof i51.PagerInputDirective, typeof i52.FilterRowComponent, typeof i53.FilterCellComponent, typeof i54.FilterCellTemplateDirective, typeof i55.StringFilterCellComponent, typeof i56.NumericFilterCellComponent, typeof i57.AutoCompleteFilterCellComponent, typeof i58.BooleanFilterCellComponent, typeof i59.FilterCellHostDirective, typeof i60.FilterCellWrapperComponent, typeof i61.DateFilterCellComponent, typeof i62.FilterCellOperatorsComponent, typeof i63.ContainsFilterOperatorComponent, typeof i64.DoesNotContainFilterOperatorComponent, typeof i65.EndsWithFilterOperatorComponent, typeof i66.EqualFilterOperatorComponent, typeof i67.IsEmptyFilterOperatorComponent, typeof i68.IsNotEmptyFilterOperatorComponent, typeof i69.IsNotNullFilterOperatorComponent, typeof i70.IsNullFilterOperatorComponent, typeof i71.NotEqualFilterOperatorComponent, typeof i72.StartsWithFilterOperatorComponent, typeof i73.GreaterFilterOperatorComponent, typeof i74.GreaterOrEqualToFilterOperatorComponent, typeof i75.LessFilterOperatorComponent, typeof i76.LessOrEqualToFilterOperatorComponent, typeof i77.AfterFilterOperatorComponent, typeof i78.AfterEqFilterOperatorComponent, typeof i79.BeforeEqFilterOperatorComponent, typeof i80.BeforeFilterOperatorComponent, typeof i82.FilterMenuComponent, typeof i83.FilterMenuContainerComponent, typeof i84.FilterMenuInputWrapperComponent, typeof i85.StringFilterMenuInputComponent, typeof i86.StringFilterMenuComponent, typeof i87.FilterMenuTemplateDirective, typeof i88.NumericFilterMenuComponent, typeof i89.NumericFilterMenuInputComponent, typeof i90.DateFilterMenuInputComponent, typeof i91.DateFilterMenuComponent, typeof i92.FilterMenuHostDirective, typeof i93.BooleanFilterMenuComponent, typeof i94.FilterMenuDropDownListDirective, typeof i95.BooleanFilterRadioButtonDirective, typeof i98.ColumnChooserComponent, typeof i100.ColumnMenuFilterComponent, typeof i101.ColumnMenuItemComponent, typeof i102.ColumnMenuItemContentTemplateDirective, typeof i103.ColumnMenuSortComponent, typeof i105.ColumnMenuLockComponent, typeof i109.ColumnMenuStickComponent, typeof i110.ColumnMenuPositionComponent, typeof i99.ColumnMenuChooserComponent, typeof i106.ColumnMenuTemplateDirective, typeof i107.ColumnMenuContainerComponent, typeof i108.ColumnMenuItemDirective, typeof i104.ColumnMenuComponent, typeof i111.ColumnMenuAutoSizeColumnComponent, typeof i112.ColumnMenuAutoSizeAllColumnsComponent, typeof i132.GridClipboardDirective, typeof i134.ToolBarModule]>;
|
|
154
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<GridModule, never, [typeof i1.GroupHeaderTemplateDirective, typeof i2.GroupHeaderColumnTemplateDirective, typeof i3.GroupFooterTemplateDirective, typeof i4.GroupHeaderComponent, typeof i5.GroupPanelComponent, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i20.CommandColumnComponent, typeof i21.CheckboxColumnComponent, typeof i22.SelectionCheckboxDirective, typeof i23.CellTemplateDirective, typeof i24.EditTemplateDirective, typeof i25.TableBodyComponent, typeof i26.NoRecordsTemplateDirective, typeof i27.CellComponent, typeof i28.EditCommandDirective, typeof i29.CancelCommandDirective, typeof i30.SaveCommandDirective, typeof i31.RemoveCommandDirective, typeof i32.AddCommandDirective, typeof i33.AddCommandToolbarDirective, typeof i34.CellLoadingTemplateDirective, typeof i35.LoadingTemplateDirective, typeof i36.RowReorderColumnComponent, typeof i37.HeaderComponent, typeof i38.HeaderTemplateDirective, typeof i39.ColumnHandleDirective, typeof i40.SelectAllCheckboxDirective, typeof i41.FooterComponent, typeof i42.CustomMessagesComponent, typeof i42.PagerFocusableDirective, typeof i42.PagerInfoComponent, typeof i42.PagerInputComponent, typeof i42.PagerNextButtonsComponent, typeof i42.PagerNumericButtonsComponent, typeof i42.PagerPageSizesComponent, typeof i42.PagerPrevButtonsComponent, typeof i42.PagerTemplateDirective, typeof i42.PagerComponent, typeof i42.PagerSpacerComponent, typeof i43.ToolBarComponent, typeof i43.ToolbarCustomMessagesComponent, typeof i43.ToolBarButtonComponent, typeof i43.ToolBarButtonGroupComponent, typeof i43.ToolBarDropDownButtonComponent, typeof i43.ToolBarSeparatorComponent, typeof i43.ToolBarSpacerComponent, typeof i43.ToolBarSplitButtonComponent, typeof i43.ToolBarToolComponent, typeof i44.FilterRowComponent, typeof i45.FilterCellComponent, typeof i46.FilterCellTemplateDirective, typeof i47.StringFilterCellComponent, typeof i48.NumericFilterCellComponent, typeof i49.AutoCompleteFilterCellComponent, typeof i50.BooleanFilterCellComponent, typeof i51.FilterCellHostDirective, typeof i52.FilterCellWrapperComponent, typeof i53.DateFilterCellComponent, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i54.FilterCellOperatorsComponent, typeof i55.ContainsFilterOperatorComponent, typeof i56.DoesNotContainFilterOperatorComponent, typeof i57.EndsWithFilterOperatorComponent, typeof i58.EqualFilterOperatorComponent, typeof i59.IsEmptyFilterOperatorComponent, typeof i60.IsNotEmptyFilterOperatorComponent, typeof i61.IsNotNullFilterOperatorComponent, typeof i62.IsNullFilterOperatorComponent, typeof i63.NotEqualFilterOperatorComponent, typeof i64.StartsWithFilterOperatorComponent, typeof i65.GreaterFilterOperatorComponent, typeof i66.GreaterOrEqualToFilterOperatorComponent, typeof i67.LessFilterOperatorComponent, typeof i68.LessOrEqualToFilterOperatorComponent, typeof i69.AfterFilterOperatorComponent, typeof i70.AfterEqFilterOperatorComponent, typeof i71.BeforeEqFilterOperatorComponent, typeof i72.BeforeFilterOperatorComponent, typeof i73.FilterInputDirective, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i54.FilterCellOperatorsComponent, typeof i55.ContainsFilterOperatorComponent, typeof i56.DoesNotContainFilterOperatorComponent, typeof i57.EndsWithFilterOperatorComponent, typeof i58.EqualFilterOperatorComponent, typeof i59.IsEmptyFilterOperatorComponent, typeof i60.IsNotEmptyFilterOperatorComponent, typeof i61.IsNotNullFilterOperatorComponent, typeof i62.IsNullFilterOperatorComponent, typeof i63.NotEqualFilterOperatorComponent, typeof i64.StartsWithFilterOperatorComponent, typeof i65.GreaterFilterOperatorComponent, typeof i66.GreaterOrEqualToFilterOperatorComponent, typeof i67.LessFilterOperatorComponent, typeof i68.LessOrEqualToFilterOperatorComponent, typeof i69.AfterFilterOperatorComponent, typeof i70.AfterEqFilterOperatorComponent, typeof i71.BeforeEqFilterOperatorComponent, typeof i72.BeforeFilterOperatorComponent, typeof i73.FilterInputDirective, typeof i74.FilterMenuComponent, typeof i75.FilterMenuContainerComponent, typeof i76.FilterMenuInputWrapperComponent, typeof i77.StringFilterMenuInputComponent, typeof i78.StringFilterMenuComponent, typeof i79.FilterMenuTemplateDirective, typeof i80.NumericFilterMenuComponent, typeof i81.NumericFilterMenuInputComponent, typeof i82.DateFilterMenuInputComponent, typeof i83.DateFilterMenuComponent, typeof i84.FilterMenuHostDirective, typeof i85.BooleanFilterMenuComponent, typeof i86.FilterMenuDropDownListDirective, typeof i87.BooleanFilterRadioButtonDirective, typeof i88.ColumnMenuChooserItemCheckedDirective, typeof i89.ColumnListComponent, typeof i90.ColumnChooserComponent, typeof i91.ColumnMenuChooserComponent, typeof i92.ColumnMenuFilterComponent, typeof i93.ColumnMenuItemComponent, typeof i94.ColumnMenuItemContentTemplateDirective, typeof i95.ColumnMenuSortComponent, typeof i96.ColumnMenuComponent, typeof i97.ColumnMenuLockComponent, typeof i98.ColumnMenuTemplateDirective, typeof i99.ColumnMenuContainerComponent, typeof i100.ColumnMenuItemDirective, typeof i101.ColumnMenuStickComponent, typeof i102.ColumnMenuPositionComponent, typeof i103.ColumnMenuAutoSizeColumnComponent, typeof i104.ColumnMenuAutoSizeAllColumnsComponent, typeof i105.GridComponent, typeof i106.ListComponent, typeof i107.ToolbarComponent, typeof i108.LocalizedMessagesDirective, typeof i109.CustomMessagesComponent, typeof i110.DataBindingDirective, typeof i111.ToolbarTemplateDirective, typeof i112.SelectionDirective, typeof i113.TemplateEditingDirective, typeof i114.ReactiveEditingDirective, typeof i115.InCellEditingDirective, typeof i116.ExpandDetailsDirective, typeof i117.ExpandGroupDirective, typeof i118.GroupBindingDirective, typeof i119.GridMarqueeDirective, typeof i120.GridSpacerComponent, typeof i121.GridToolbarFocusableDirective, typeof i122.StatusBarComponent, typeof i123.StatusBarTemplateDirective, typeof i124.GridClipboardDirective, typeof i125.TableDirective], [typeof i105.GridComponent, typeof i111.ToolbarTemplateDirective, typeof i107.ToolbarComponent, typeof i120.GridSpacerComponent, typeof i123.StatusBarTemplateDirective, typeof i110.DataBindingDirective, typeof i112.SelectionDirective, typeof i109.CustomMessagesComponent, typeof i118.GroupBindingDirective, typeof i113.TemplateEditingDirective, typeof i114.ReactiveEditingDirective, typeof i115.InCellEditingDirective, typeof i116.ExpandDetailsDirective, typeof i117.ExpandGroupDirective, typeof i121.GridToolbarFocusableDirective, typeof i1.GroupHeaderTemplateDirective, typeof i2.GroupHeaderColumnTemplateDirective, typeof i3.GroupFooterTemplateDirective, typeof i4.GroupHeaderComponent, typeof i5.GroupPanelComponent, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i20.CommandColumnComponent, typeof i21.CheckboxColumnComponent, typeof i22.SelectionCheckboxDirective, typeof i23.CellTemplateDirective, typeof i24.EditTemplateDirective, typeof i25.TableBodyComponent, typeof i26.NoRecordsTemplateDirective, typeof i27.CellComponent, typeof i28.EditCommandDirective, typeof i29.CancelCommandDirective, typeof i30.SaveCommandDirective, typeof i31.RemoveCommandDirective, typeof i32.AddCommandDirective, typeof i33.AddCommandToolbarDirective, typeof i34.CellLoadingTemplateDirective, typeof i35.LoadingTemplateDirective, typeof i36.RowReorderColumnComponent, typeof i37.HeaderComponent, typeof i38.HeaderTemplateDirective, typeof i39.ColumnHandleDirective, typeof i40.SelectAllCheckboxDirective, typeof i44.FilterRowComponent, typeof i45.FilterCellComponent, typeof i46.FilterCellTemplateDirective, typeof i47.StringFilterCellComponent, typeof i48.NumericFilterCellComponent, typeof i49.AutoCompleteFilterCellComponent, typeof i50.BooleanFilterCellComponent, typeof i51.FilterCellHostDirective, typeof i52.FilterCellWrapperComponent, typeof i53.DateFilterCellComponent, typeof i54.FilterCellOperatorsComponent, typeof i55.ContainsFilterOperatorComponent, typeof i56.DoesNotContainFilterOperatorComponent, typeof i57.EndsWithFilterOperatorComponent, typeof i58.EqualFilterOperatorComponent, typeof i59.IsEmptyFilterOperatorComponent, typeof i60.IsNotEmptyFilterOperatorComponent, typeof i61.IsNotNullFilterOperatorComponent, typeof i62.IsNullFilterOperatorComponent, typeof i63.NotEqualFilterOperatorComponent, typeof i64.StartsWithFilterOperatorComponent, typeof i65.GreaterFilterOperatorComponent, typeof i66.GreaterOrEqualToFilterOperatorComponent, typeof i67.LessFilterOperatorComponent, typeof i68.LessOrEqualToFilterOperatorComponent, typeof i69.AfterFilterOperatorComponent, typeof i70.AfterEqFilterOperatorComponent, typeof i71.BeforeEqFilterOperatorComponent, typeof i72.BeforeFilterOperatorComponent, typeof i74.FilterMenuComponent, typeof i75.FilterMenuContainerComponent, typeof i76.FilterMenuInputWrapperComponent, typeof i77.StringFilterMenuInputComponent, typeof i78.StringFilterMenuComponent, typeof i79.FilterMenuTemplateDirective, typeof i80.NumericFilterMenuComponent, typeof i81.NumericFilterMenuInputComponent, typeof i82.DateFilterMenuInputComponent, typeof i83.DateFilterMenuComponent, typeof i84.FilterMenuHostDirective, typeof i85.BooleanFilterMenuComponent, typeof i86.FilterMenuDropDownListDirective, typeof i87.BooleanFilterRadioButtonDirective, typeof i90.ColumnChooserComponent, typeof i92.ColumnMenuFilterComponent, typeof i93.ColumnMenuItemComponent, typeof i94.ColumnMenuItemContentTemplateDirective, typeof i95.ColumnMenuSortComponent, typeof i97.ColumnMenuLockComponent, typeof i101.ColumnMenuStickComponent, typeof i102.ColumnMenuPositionComponent, typeof i91.ColumnMenuChooserComponent, typeof i98.ColumnMenuTemplateDirective, typeof i99.ColumnMenuContainerComponent, typeof i100.ColumnMenuItemDirective, typeof i96.ColumnMenuComponent, typeof i103.ColumnMenuAutoSizeColumnComponent, typeof i104.ColumnMenuAutoSizeAllColumnsComponent, typeof i42.CustomMessagesComponent, typeof i42.PagerFocusableDirective, typeof i42.PagerInfoComponent, typeof i42.PagerInputComponent, typeof i42.PagerNextButtonsComponent, typeof i42.PagerNumericButtonsComponent, typeof i42.PagerPageSizesComponent, typeof i42.PagerPrevButtonsComponent, typeof i42.PagerTemplateDirective, typeof i42.PagerComponent, typeof i42.PagerSpacerComponent, typeof i124.GridClipboardDirective, typeof i43.ToolBarComponent, typeof i43.ToolbarCustomMessagesComponent, typeof i43.ToolBarButtonComponent, typeof i43.ToolBarButtonGroupComponent, typeof i43.ToolBarDropDownButtonComponent, typeof i43.ToolBarSeparatorComponent, typeof i43.ToolBarSpacerComponent, typeof i43.ToolBarSplitButtonComponent, typeof i43.ToolBarToolComponent]>;
|
|
164
155
|
static ɵinj: i0.ɵɵInjectorDeclaration<GridModule>;
|
|
165
156
|
}
|
package/index.d.ts
CHANGED
|
@@ -23,7 +23,6 @@ export { CellLoadingTemplateDirective } from './rendering/cell-loading.template.
|
|
|
23
23
|
export { LoadingTemplateDirective } from './rendering/loading-template.directive';
|
|
24
24
|
export { HeaderTemplateDirective } from './rendering/header/header-template.directive';
|
|
25
25
|
export { FooterTemplateDirective } from './rendering/footer/footer-template.directive';
|
|
26
|
-
export { PagerTemplateDirective } from './pager/pager-template.directive';
|
|
27
26
|
export { GridSpacerComponent } from './rendering/common/spacer.component';
|
|
28
27
|
export { ExpandDetailsDirective } from './rendering/details-expand.directive';
|
|
29
28
|
export { StatusBarTemplateDirective } from './aggregates/status-bar-template.directive';
|
|
@@ -51,7 +50,6 @@ export { ResizeService } from './layout/resize.service';
|
|
|
51
50
|
export { ResponsiveService } from './layout/responsive.service';
|
|
52
51
|
export { FocusRoot } from './navigation/focus-root';
|
|
53
52
|
export { NavigationService } from './navigation/navigation.service';
|
|
54
|
-
export { PagerContextService } from './pager/pager-context.service';
|
|
55
53
|
export { CELL_CONTEXT } from './rendering/common/cell-context';
|
|
56
54
|
export { DetailsService } from './rendering/details/details.service';
|
|
57
55
|
export { DEFAULT_SCROLLER_FACTORY } from './rendering/list.component';
|
|
@@ -65,7 +63,7 @@ export { DetailCollapseEvent } from './rendering/details/detail-collapse-event';
|
|
|
65
63
|
export { GroupHeaderTemplateDirective } from './grouping/group-header-template.directive';
|
|
66
64
|
export { GroupHeaderColumnTemplateDirective } from './grouping/group-header-column-template.directive';
|
|
67
65
|
export { GroupFooterTemplateDirective } from './grouping/group-footer-template.directive';
|
|
68
|
-
export { PagerSettings } from './
|
|
66
|
+
export { PagerSettings, PagerPosition, PagerType, PageSizeItem } from './common/pager-settings';
|
|
69
67
|
export { GridDataResult } from './data/data.collection';
|
|
70
68
|
export { PageChangeEvent, DataStateChangeEvent } from './data/change-event-args.interface';
|
|
71
69
|
export { DataItem } from './data/data-item.interface';
|
|
@@ -116,23 +114,13 @@ export { GreaterFilterOperatorComponent } from './filtering/operators/gt-filter-
|
|
|
116
114
|
export { GreaterOrEqualToFilterOperatorComponent } from './filtering/operators/gte-filter-operator.component';
|
|
117
115
|
export { LessOrEqualToFilterOperatorComponent } from './filtering/operators/lte-filter-operator.component';
|
|
118
116
|
export { LessFilterOperatorComponent } from './filtering/operators/lt-filter-operator.component';
|
|
119
|
-
export { PagerPrevButtonsComponent } from './pager/pager-prev-buttons.component';
|
|
120
|
-
export { PagerNextButtonsComponent } from './pager/pager-next-buttons.component';
|
|
121
|
-
export { PagerNumericButtonsComponent } from './pager/pager-numeric-buttons.component';
|
|
122
|
-
export { PagerInputComponent } from './pager/pager-input.component';
|
|
123
|
-
export { PagerInfoComponent } from './pager/pager-info.component';
|
|
124
|
-
export { PagerPageSizesComponent } from './pager/pager-page-sizes.component';
|
|
125
|
-
export { PageSizeItem } from './pager/pagesize-item.interface';
|
|
126
117
|
export * from './filtering/filterable';
|
|
127
|
-
export { PagerPosition, PagerType } from './pager/pager-settings';
|
|
128
|
-
export { PagerElementComponent } from './pager/pager-element.component';
|
|
129
118
|
export { RowFilterModule } from './filtering/cell/row-filtering.module';
|
|
130
119
|
export { FilterMenuModule } from './filtering/menu/filter-menu.module';
|
|
131
120
|
export { BodyModule } from './rendering/body.module';
|
|
132
121
|
export { GroupModule } from './grouping/group.module';
|
|
133
122
|
export { HeaderModule } from './rendering/header/header.module';
|
|
134
123
|
export { FooterModule } from './rendering/footer/footer.module';
|
|
135
|
-
export { PagerModule } from './pager/pager.module';
|
|
136
124
|
export { TemplateEditingDirective } from './editing-directives/template-editing.directive';
|
|
137
125
|
export { ReactiveEditingDirective } from './editing-directives/reactive-editing.directive';
|
|
138
126
|
export { InCellEditingDirective } from './editing-directives/in-cell-editing.directive';
|
|
@@ -143,7 +131,6 @@ export { HeaderComponent } from './rendering/header/header.component';
|
|
|
143
131
|
export { ListComponent } from './rendering/list.component';
|
|
144
132
|
export { FooterComponent } from './rendering/footer/footer.component';
|
|
145
133
|
export { TableBodyComponent } from './rendering/table-body.component';
|
|
146
|
-
export { PagerComponent } from './pager/pager.component';
|
|
147
134
|
export { CustomMessagesComponent } from './localization/custom-messages.component';
|
|
148
135
|
export { LoadingComponent } from './rendering/common/loading.component';
|
|
149
136
|
export { PDFModule } from './pdf/pdf.module';
|
|
@@ -248,8 +235,6 @@ export { LogicalCellDirective } from './navigation/logical-cell.directive';
|
|
|
248
235
|
export { LogicalRowDirective } from './navigation/logical-row.directive';
|
|
249
236
|
export { FieldAccessorPipe } from './rendering/common/field-accessor.pipe';
|
|
250
237
|
export { TableDirective } from './column-resizing/table.directive';
|
|
251
|
-
export { PagerInputDirective } from './pager/pager-input.directive';
|
|
252
|
-
export { PagerDropDownListDirective } from './pager/pager-dropdown.directive';
|
|
253
238
|
export { GroupHeaderComponent } from './grouping/group-header.component';
|
|
254
239
|
export { GroupPanelComponent } from './grouping/group-panel.component';
|
|
255
240
|
export { SizingOptionsService } from './layout/sizing-options.service';
|
|
@@ -44,29 +44,33 @@ export declare class GridMessages extends ComponentMessages {
|
|
|
44
44
|
*/
|
|
45
45
|
pagerNextPage: string;
|
|
46
46
|
/**
|
|
47
|
-
* The
|
|
47
|
+
* The text displayed before the pager input.
|
|
48
48
|
*/
|
|
49
49
|
pagerPage: string;
|
|
50
50
|
/**
|
|
51
|
-
* The
|
|
51
|
+
* The text displayed after the page-size selector.
|
|
52
52
|
*/
|
|
53
53
|
pagerItemsPerPage: string;
|
|
54
54
|
/**
|
|
55
|
-
* The
|
|
55
|
+
* The text displayed before the total-page number.
|
|
56
56
|
*/
|
|
57
57
|
pagerOf: string;
|
|
58
58
|
/**
|
|
59
|
-
* The
|
|
59
|
+
* The text displayed after the total number of items.
|
|
60
60
|
*/
|
|
61
61
|
pagerItems: string;
|
|
62
62
|
/**
|
|
63
63
|
* The title attribute of the page number input element.
|
|
64
64
|
*/
|
|
65
65
|
pagerPageNumberInputTitle: string;
|
|
66
|
+
/**
|
|
67
|
+
* The text of the aria-label attribute applied to the page number input element.
|
|
68
|
+
*/
|
|
69
|
+
pagerInputLabel: string;
|
|
66
70
|
/**
|
|
67
71
|
* The text of the title and `aria-label` attributes applied to the page chooser in the Grid Pager.
|
|
68
72
|
*/
|
|
69
|
-
|
|
73
|
+
pagerSelectPage: string;
|
|
70
74
|
/**
|
|
71
75
|
* The label of the filter cell or icon.
|
|
72
76
|
*/
|
|
@@ -407,5 +411,5 @@ export declare class GridMessages extends ComponentMessages {
|
|
|
407
411
|
*/
|
|
408
412
|
groupChipMenuNext: string;
|
|
409
413
|
static ɵfac: i0.ɵɵFactoryDeclaration<GridMessages, never>;
|
|
410
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<GridMessages, "kendo-grid-messages-base", never, { "groupPanelEmpty": { "alias": "groupPanelEmpty"; "required": false; }; "noRecords": { "alias": "noRecords"; "required": false; }; "pagerLabel": { "alias": "pagerLabel"; "required": false; }; "pagerFirstPage": { "alias": "pagerFirstPage"; "required": false; }; "pagerLastPage": { "alias": "pagerLastPage"; "required": false; }; "pagerPreviousPage": { "alias": "pagerPreviousPage"; "required": false; }; "pagerNextPage": { "alias": "pagerNextPage"; "required": false; }; "pagerPage": { "alias": "pagerPage"; "required": false; }; "pagerItemsPerPage": { "alias": "pagerItemsPerPage"; "required": false; }; "pagerOf": { "alias": "pagerOf"; "required": false; }; "pagerItems": { "alias": "pagerItems"; "required": false; }; "pagerPageNumberInputTitle": { "alias": "pagerPageNumberInputTitle"; "required": false; }; "
|
|
414
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GridMessages, "kendo-grid-messages-base", never, { "groupPanelEmpty": { "alias": "groupPanelEmpty"; "required": false; }; "noRecords": { "alias": "noRecords"; "required": false; }; "pagerLabel": { "alias": "pagerLabel"; "required": false; }; "pagerFirstPage": { "alias": "pagerFirstPage"; "required": false; }; "pagerLastPage": { "alias": "pagerLastPage"; "required": false; }; "pagerPreviousPage": { "alias": "pagerPreviousPage"; "required": false; }; "pagerNextPage": { "alias": "pagerNextPage"; "required": false; }; "pagerPage": { "alias": "pagerPage"; "required": false; }; "pagerItemsPerPage": { "alias": "pagerItemsPerPage"; "required": false; }; "pagerOf": { "alias": "pagerOf"; "required": false; }; "pagerItems": { "alias": "pagerItems"; "required": false; }; "pagerPageNumberInputTitle": { "alias": "pagerPageNumberInputTitle"; "required": false; }; "pagerInputLabel": { "alias": "pagerInputLabel"; "required": false; }; "pagerSelectPage": { "alias": "pagerSelectPage"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "filterInputLabel": { "alias": "filterInputLabel"; "required": false; }; "filterMenuTitle": { "alias": "filterMenuTitle"; "required": false; }; "filterMenuOperatorsDropDownLabel": { "alias": "filterMenuOperatorsDropDownLabel"; "required": false; }; "filterMenuLogicDropDownLabel": { "alias": "filterMenuLogicDropDownLabel"; "required": false; }; "filterCellOperatorLabel": { "alias": "filterCellOperatorLabel"; "required": false; }; "booleanFilterCellLabel": { "alias": "booleanFilterCellLabel"; "required": false; }; "filterEqOperator": { "alias": "filterEqOperator"; "required": false; }; "filterNotEqOperator": { "alias": "filterNotEqOperator"; "required": false; }; "filterIsNullOperator": { "alias": "filterIsNullOperator"; "required": false; }; "filterIsNotNullOperator": { "alias": "filterIsNotNullOperator"; "required": false; }; "filterIsEmptyOperator": { "alias": "filterIsEmptyOperator"; "required": false; }; "filterIsNotEmptyOperator": { "alias": "filterIsNotEmptyOperator"; "required": false; }; "filterStartsWithOperator": { "alias": "filterStartsWithOperator"; "required": false; }; "filterContainsOperator": { "alias": "filterContainsOperator"; "required": false; }; "filterNotContainsOperator": { "alias": "filterNotContainsOperator"; "required": false; }; "filterEndsWithOperator": { "alias": "filterEndsWithOperator"; "required": false; }; "filterGteOperator": { "alias": "filterGteOperator"; "required": false; }; "filterGtOperator": { "alias": "filterGtOperator"; "required": false; }; "filterLteOperator": { "alias": "filterLteOperator"; "required": false; }; "filterLtOperator": { "alias": "filterLtOperator"; "required": false; }; "filterIsTrue": { "alias": "filterIsTrue"; "required": false; }; "filterIsFalse": { "alias": "filterIsFalse"; "required": false; }; "filterBooleanAll": { "alias": "filterBooleanAll"; "required": false; }; "filterAfterOrEqualOperator": { "alias": "filterAfterOrEqualOperator"; "required": false; }; "filterAfterOperator": { "alias": "filterAfterOperator"; "required": false; }; "filterBeforeOperator": { "alias": "filterBeforeOperator"; "required": false; }; "filterBeforeOrEqualOperator": { "alias": "filterBeforeOrEqualOperator"; "required": false; }; "filterFilterButton": { "alias": "filterFilterButton"; "required": false; }; "filterClearButton": { "alias": "filterClearButton"; "required": false; }; "filterAndLogic": { "alias": "filterAndLogic"; "required": false; }; "filterOrLogic": { "alias": "filterOrLogic"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "gridLabel": { "alias": "gridLabel"; "required": false; }; "columnMenu": { "alias": "columnMenu"; "required": false; }; "setColumnPosition": { "alias": "setColumnPosition"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "lock": { "alias": "lock"; "required": false; }; "unlock": { "alias": "unlock"; "required": false; }; "stick": { "alias": "stick"; "required": false; }; "unstick": { "alias": "unstick"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "sortAscending": { "alias": "sortAscending"; "required": false; }; "sortDescending": { "alias": "sortDescending"; "required": false; }; "autosizeThisColumn": { "alias": "autosizeThisColumn"; "required": false; }; "autosizeAllColumns": { "alias": "autosizeAllColumns"; "required": false; }; "sortedAscending": { "alias": "sortedAscending"; "required": false; }; "sortedDescending": { "alias": "sortedDescending"; "required": false; }; "sortedDefault": { "alias": "sortedDefault"; "required": false; }; "columnsApply": { "alias": "columnsApply"; "required": false; }; "columnsReset": { "alias": "columnsReset"; "required": false; }; "detailExpand": { "alias": "detailExpand"; "required": false; }; "detailCollapse": { "alias": "detailCollapse"; "required": false; }; "filterDateToday": { "alias": "filterDateToday"; "required": false; }; "filterDateToggle": { "alias": "filterDateToggle"; "required": false; }; "filterNumericDecrement": { "alias": "filterNumericDecrement"; "required": false; }; "filterNumericIncrement": { "alias": "filterNumericIncrement"; "required": false; }; "selectionCheckboxLabel": { "alias": "selectionCheckboxLabel"; "required": false; }; "selectAllCheckboxLabel": { "alias": "selectAllCheckboxLabel"; "required": false; }; "groupCollapse": { "alias": "groupCollapse"; "required": false; }; "groupExpand": { "alias": "groupExpand"; "required": false; }; "topToolbarLabel": { "alias": "topToolbarLabel"; "required": false; }; "bottomToolbarLabel": { "alias": "bottomToolbarLabel"; "required": false; }; "groupPanelLabel": { "alias": "groupPanelLabel"; "required": false; }; "dragRowHandleLabel": { "alias": "dragRowHandleLabel"; "required": false; }; "columnMenuFilterTabTitle": { "alias": "columnMenuFilterTabTitle"; "required": false; }; "columnMenuGeneralTabTitle": { "alias": "columnMenuGeneralTabTitle"; "required": false; }; "columnMenuColumnsTabTitle": { "alias": "columnMenuColumnsTabTitle"; "required": false; }; "groupChipMenuPrevious": { "alias": "groupChipMenuPrevious"; "required": false; }; "groupChipMenuNext": { "alias": "groupChipMenuNext"; "required": false; }; }, {}, never, never, false, never>;
|
|
411
415
|
}
|
|
@@ -15,7 +15,7 @@ import { NavigationRow } from './navigation-row.interface';
|
|
|
15
15
|
import { DomEventsService } from '../common/dom-events.service';
|
|
16
16
|
import { EditService } from '../editing/edit.service';
|
|
17
17
|
import { GroupsService } from '../grouping/groups.service';
|
|
18
|
-
import { PagerContextService } from '
|
|
18
|
+
import { PagerContextService } from '@progress/kendo-angular-pager';
|
|
19
19
|
import { DetailsService } from '../rendering/details/details.service';
|
|
20
20
|
import { ScrollRequestService } from '../scrolling/scroll-request.service';
|
|
21
21
|
import { GridNavigableSection } from './navigable-settings';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-grid",
|
|
3
|
-
"version": "17.0.0-develop.
|
|
3
|
+
"version": "17.0.0-develop.36",
|
|
4
4
|
"description": "Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -33,26 +33,27 @@
|
|
|
33
33
|
"@progress/kendo-data-query": "^1.0.0",
|
|
34
34
|
"@progress/kendo-drawing": "^1.21.0",
|
|
35
35
|
"@progress/kendo-licensing": "^1.0.2",
|
|
36
|
-
"@progress/kendo-angular-buttons": "17.0.0-develop.
|
|
37
|
-
"@progress/kendo-angular-common": "17.0.0-develop.
|
|
38
|
-
"@progress/kendo-angular-dateinputs": "17.0.0-develop.
|
|
39
|
-
"@progress/kendo-angular-layout": "17.0.0-develop.
|
|
40
|
-
"@progress/kendo-angular-dropdowns": "17.0.0-develop.
|
|
41
|
-
"@progress/kendo-angular-excel-export": "17.0.0-develop.
|
|
42
|
-
"@progress/kendo-angular-icons": "17.0.0-develop.
|
|
43
|
-
"@progress/kendo-angular-inputs": "17.0.0-develop.
|
|
44
|
-
"@progress/kendo-angular-intl": "17.0.0-develop.
|
|
45
|
-
"@progress/kendo-angular-l10n": "17.0.0-develop.
|
|
46
|
-
"@progress/kendo-angular-label": "17.0.0-develop.
|
|
47
|
-
"@progress/kendo-angular-
|
|
48
|
-
"@progress/kendo-angular-
|
|
49
|
-
"@progress/kendo-angular-
|
|
50
|
-
"@progress/kendo-angular-
|
|
36
|
+
"@progress/kendo-angular-buttons": "17.0.0-develop.36",
|
|
37
|
+
"@progress/kendo-angular-common": "17.0.0-develop.36",
|
|
38
|
+
"@progress/kendo-angular-dateinputs": "17.0.0-develop.36",
|
|
39
|
+
"@progress/kendo-angular-layout": "17.0.0-develop.36",
|
|
40
|
+
"@progress/kendo-angular-dropdowns": "17.0.0-develop.36",
|
|
41
|
+
"@progress/kendo-angular-excel-export": "17.0.0-develop.36",
|
|
42
|
+
"@progress/kendo-angular-icons": "17.0.0-develop.36",
|
|
43
|
+
"@progress/kendo-angular-inputs": "17.0.0-develop.36",
|
|
44
|
+
"@progress/kendo-angular-intl": "17.0.0-develop.36",
|
|
45
|
+
"@progress/kendo-angular-l10n": "17.0.0-develop.36",
|
|
46
|
+
"@progress/kendo-angular-label": "17.0.0-develop.36",
|
|
47
|
+
"@progress/kendo-angular-pager": "17.0.0-develop.36",
|
|
48
|
+
"@progress/kendo-angular-pdf-export": "17.0.0-develop.36",
|
|
49
|
+
"@progress/kendo-angular-popup": "17.0.0-develop.36",
|
|
50
|
+
"@progress/kendo-angular-toolbar": "17.0.0-develop.36",
|
|
51
|
+
"@progress/kendo-angular-utils": "17.0.0-develop.36",
|
|
51
52
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
52
53
|
},
|
|
53
54
|
"dependencies": {
|
|
54
55
|
"tslib": "^2.3.1",
|
|
55
|
-
"@progress/kendo-angular-schematics": "17.0.0-develop.
|
|
56
|
+
"@progress/kendo-angular-schematics": "17.0.0-develop.36",
|
|
56
57
|
"@progress/kendo-common": "^1.0.1",
|
|
57
58
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
58
59
|
},
|
|
@@ -22,5 +22,5 @@ export declare class GridSpacerComponent {
|
|
|
22
22
|
*/
|
|
23
23
|
width: string;
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<GridSpacerComponent, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GridSpacerComponent, "kendo-grid-spacer
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GridSpacerComponent, "kendo-grid-spacer", never, { "width": { "alias": "width"; "required": false; }; }, {}, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -4,14 +4,14 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
4
4
|
function default_1(options) {
|
|
5
5
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'GridModule', package: 'grid', peerDependencies: {
|
|
6
6
|
// peer deps of the dropdowns
|
|
7
|
-
'@progress/kendo-angular-treeview': '17.0.0-develop.
|
|
8
|
-
'@progress/kendo-angular-navigation': '17.0.0-develop.
|
|
7
|
+
'@progress/kendo-angular-treeview': '17.0.0-develop.36',
|
|
8
|
+
'@progress/kendo-angular-navigation': '17.0.0-develop.36',
|
|
9
9
|
// peer dependency of kendo-angular-inputs
|
|
10
|
-
'@progress/kendo-angular-dialog': '17.0.0-develop.
|
|
10
|
+
'@progress/kendo-angular-dialog': '17.0.0-develop.36',
|
|
11
11
|
// peer dependency of kendo-angular-icons
|
|
12
12
|
'@progress/kendo-svg-icons': '^3.0.0',
|
|
13
13
|
// peer dependency of kendo-angular-layout
|
|
14
|
-
'@progress/kendo-angular-progressbar': '17.0.0-develop.
|
|
14
|
+
'@progress/kendo-angular-progressbar': '17.0.0-develop.36'
|
|
15
15
|
} });
|
|
16
16
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
17
17
|
}
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { Subject } from "rxjs";
|
|
6
|
-
/**
|
|
7
|
-
* @hidden
|
|
8
|
-
*/
|
|
9
|
-
export class PagerContextService {
|
|
10
|
-
total;
|
|
11
|
-
skip;
|
|
12
|
-
pageSize;
|
|
13
|
-
changes = new Subject();
|
|
14
|
-
pageChange = new Subject();
|
|
15
|
-
get currentPage() {
|
|
16
|
-
return this.skip / this.pageSize;
|
|
17
|
-
}
|
|
18
|
-
notifyChanges(changes) {
|
|
19
|
-
this.total = changes.total;
|
|
20
|
-
this.pageSize = changes.pageSize;
|
|
21
|
-
this.skip = changes.skip;
|
|
22
|
-
this.changes.next(changes);
|
|
23
|
-
}
|
|
24
|
-
changePage(page) {
|
|
25
|
-
this.pageChange.next({ skip: page * this.pageSize, take: this.pageSize });
|
|
26
|
-
}
|
|
27
|
-
changePageSize(value) {
|
|
28
|
-
this.pageChange.next({ skip: 0, take: value });
|
|
29
|
-
}
|
|
30
|
-
nextPage() {
|
|
31
|
-
const nextPage = this.currentPage + 1;
|
|
32
|
-
if (nextPage * this.pageSize < this.total) {
|
|
33
|
-
this.changePage(nextPage);
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
prevPage() {
|
|
37
|
-
const prevPage = this.currentPage - 1;
|
|
38
|
-
if (prevPage * this.pageSize >= 0) {
|
|
39
|
-
this.changePage(prevPage);
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
}
|