@progress/kendo-angular-grid 18.5.0-develop.2 → 18.5.0-develop.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/column-menu/column-menu-item.component.d.ts +3 -4
- package/columns/column.component.d.ts +3 -2
- package/common/field-datatype.d.ts +9 -0
- package/directives.d.ts +5 -3
- package/editing/form/dialog-form.component.d.ts +27 -0
- package/editing/form/form-formfield.component.d.ts +24 -0
- package/editing/form/form.component.d.ts +28 -0
- package/editing/form/index.d.ts +8 -0
- package/editing/form/models.d.ts +196 -0
- package/editing-directives/editing-directive-base.d.ts +10 -3
- package/editing-directives/external-editing.directive.d.ts +46 -0
- package/esm2022/column-menu/column-menu-item.component.mjs +3 -4
- package/esm2022/common/field-datatype.mjs +5 -0
- package/esm2022/directives.mjs +8 -1
- package/esm2022/editing/edit.service.mjs +1 -1
- package/esm2022/editing/form/dialog-form.component.mjs +102 -0
- package/esm2022/editing/form/form-formfield.component.mjs +161 -0
- package/esm2022/editing/form/form.component.mjs +153 -0
- package/esm2022/editing/form/index.mjs +8 -0
- package/esm2022/editing/form/models.mjs +5 -0
- package/esm2022/editing-directives/editing-directive-base.mjs +33 -5
- package/esm2022/editing-directives/external-editing.directive.mjs +130 -0
- package/esm2022/grid.component.mjs +55 -8
- package/esm2022/grid.module.mjs +15 -11
- package/esm2022/index.mjs +1 -0
- package/esm2022/localization/messages.mjs +62 -1
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/utils.mjs +1 -1
- package/fesm2022/progress-kendo-angular-grid.mjs +669 -39
- package/grid.component.d.ts +0 -6
- package/grid.module.d.ts +15 -11
- package/index.d.ts +3 -0
- package/localization/messages.d.ts +46 -1
- package/package.json +19 -19
- package/schematics/ngAdd/index.js +4 -4
package/grid.component.d.ts
CHANGED
|
@@ -561,9 +561,6 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
|
|
|
561
561
|
columnList: ColumnList;
|
|
562
562
|
selectionDirective: boolean | SelectionDirective;
|
|
563
563
|
ariaRootId: string;
|
|
564
|
-
/**
|
|
565
|
-
* @hidden
|
|
566
|
-
*/
|
|
567
564
|
showLicenseWatermark: boolean;
|
|
568
565
|
columnsContainer: ColumnsContainer;
|
|
569
566
|
view: DataCollection;
|
|
@@ -911,9 +908,6 @@ export declare class GridComponent implements AfterContentInit, AfterViewInit, O
|
|
|
911
908
|
* @hidden
|
|
912
909
|
*/
|
|
913
910
|
updateNavigationMetadata(): void;
|
|
914
|
-
/**
|
|
915
|
-
* @hidden
|
|
916
|
-
*/
|
|
917
911
|
private reorder;
|
|
918
912
|
private updateColumnIndices;
|
|
919
913
|
private updateIndicesForLevel;
|
package/grid.module.d.ts
CHANGED
|
@@ -120,16 +120,20 @@ import * as i114 from "./selection/selection.directive";
|
|
|
120
120
|
import * as i115 from "./editing-directives/template-editing.directive";
|
|
121
121
|
import * as i116 from "./editing-directives/reactive-editing.directive";
|
|
122
122
|
import * as i117 from "./editing-directives/in-cell-editing.directive";
|
|
123
|
-
import * as i118 from "./
|
|
124
|
-
import * as i119 from "./rendering/
|
|
125
|
-
import * as i120 from "./
|
|
126
|
-
import * as i121 from "./
|
|
127
|
-
import * as i122 from "./
|
|
128
|
-
import * as i123 from "./rendering/
|
|
129
|
-
import * as i124 from "./
|
|
130
|
-
import * as i125 from "./aggregates/status-bar
|
|
131
|
-
import * as i126 from "./
|
|
132
|
-
import * as i127 from "./
|
|
123
|
+
import * as i118 from "./editing-directives/external-editing.directive";
|
|
124
|
+
import * as i119 from "./rendering/details-expand.directive";
|
|
125
|
+
import * as i120 from "./rendering/groups-expand.directive";
|
|
126
|
+
import * as i121 from "./grouping/group-scroll-binding.directive";
|
|
127
|
+
import * as i122 from "./selection/marquee.directive";
|
|
128
|
+
import * as i123 from "./rendering/common/spacer.component";
|
|
129
|
+
import * as i124 from "./rendering/toolbar/toolbar-focusable.directive";
|
|
130
|
+
import * as i125 from "./aggregates/status-bar.component";
|
|
131
|
+
import * as i126 from "./aggregates/status-bar-template.directive";
|
|
132
|
+
import * as i127 from "./common/clipboard.directive";
|
|
133
|
+
import * as i128 from "./editing/form/form.component";
|
|
134
|
+
import * as i129 from "./editing/form/dialog-form.component";
|
|
135
|
+
import * as i130 from "./editing/form/form-formfield.component";
|
|
136
|
+
import * as i131 from "./column-resizing/table.directive";
|
|
133
137
|
/**
|
|
134
138
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
135
139
|
* definition for the Grid component.
|
|
@@ -153,6 +157,6 @@ import * as i127 from "./column-resizing/table.directive";
|
|
|
153
157
|
*/
|
|
154
158
|
export declare class GridModule {
|
|
155
159
|
static ɵfac: i0.ɵɵFactoryDeclaration<GridModule, never>;
|
|
156
|
-
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.RowDragHandleTemplateDirective, typeof i26.RowDragHintTemplateDirective, typeof i27.TableBodyComponent, typeof i28.NoRecordsTemplateDirective, typeof i29.CellComponent, typeof i30.EditCommandDirective, typeof i31.CancelCommandDirective, typeof i32.SaveCommandDirective, typeof i33.RemoveCommandDirective, typeof i34.AddCommandDirective, typeof i35.AddCommandToolbarDirective, typeof i36.CellLoadingTemplateDirective, typeof i37.LoadingTemplateDirective, typeof i38.RowReorderColumnComponent, typeof i39.HeaderComponent, typeof i40.HeaderTemplateDirective, typeof i41.ColumnHandleDirective, typeof i42.SelectAllCheckboxDirective, typeof i43.FooterComponent, typeof i44.CustomMessagesComponent, typeof i44.PagerFocusableDirective, typeof i44.PagerInfoComponent, typeof i44.PagerInputComponent, typeof i44.PagerNextButtonsComponent, typeof i44.PagerNumericButtonsComponent, typeof i44.PagerPageSizesComponent, typeof i44.PagerPrevButtonsComponent, typeof i44.PagerTemplateDirective, typeof i44.PagerComponent, typeof i44.PagerSpacerComponent, typeof i45.ToolBarComponent, typeof i45.ToolbarCustomMessagesComponent, typeof i45.ToolBarButtonComponent, typeof i45.ToolBarButtonGroupComponent, typeof i45.ToolBarDropDownButtonComponent, typeof i45.ToolBarSeparatorComponent, typeof i45.ToolBarSpacerComponent, typeof i45.ToolBarSplitButtonComponent, typeof i45.ToolBarToolComponent, typeof i46.FilterRowComponent, typeof i47.FilterCellComponent, typeof i48.FilterCellTemplateDirective, typeof i49.StringFilterCellComponent, typeof i50.NumericFilterCellComponent, typeof i51.AutoCompleteFilterCellComponent, typeof i52.BooleanFilterCellComponent, typeof i53.FilterCellHostDirective, typeof i54.FilterCellWrapperComponent, typeof i55.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 i56.FilterCellOperatorsComponent, typeof i57.ContainsFilterOperatorComponent, typeof i58.DoesNotContainFilterOperatorComponent, typeof i59.EndsWithFilterOperatorComponent, typeof i60.EqualFilterOperatorComponent, typeof i61.IsEmptyFilterOperatorComponent, typeof i62.IsNotEmptyFilterOperatorComponent, typeof i63.IsNotNullFilterOperatorComponent, typeof i64.IsNullFilterOperatorComponent, typeof i65.NotEqualFilterOperatorComponent, typeof i66.StartsWithFilterOperatorComponent, typeof i67.GreaterFilterOperatorComponent, typeof i68.GreaterOrEqualToFilterOperatorComponent, typeof i69.LessFilterOperatorComponent, typeof i70.LessOrEqualToFilterOperatorComponent, typeof i71.AfterFilterOperatorComponent, typeof i72.AfterEqFilterOperatorComponent, typeof i73.BeforeEqFilterOperatorComponent, typeof i74.BeforeFilterOperatorComponent, typeof i75.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 i56.FilterCellOperatorsComponent, typeof i57.ContainsFilterOperatorComponent, typeof i58.DoesNotContainFilterOperatorComponent, typeof i59.EndsWithFilterOperatorComponent, typeof i60.EqualFilterOperatorComponent, typeof i61.IsEmptyFilterOperatorComponent, typeof i62.IsNotEmptyFilterOperatorComponent, typeof i63.IsNotNullFilterOperatorComponent, typeof i64.IsNullFilterOperatorComponent, typeof i65.NotEqualFilterOperatorComponent, typeof i66.StartsWithFilterOperatorComponent, typeof i67.GreaterFilterOperatorComponent, typeof i68.GreaterOrEqualToFilterOperatorComponent, typeof i69.LessFilterOperatorComponent, typeof i70.LessOrEqualToFilterOperatorComponent, typeof i71.AfterFilterOperatorComponent, typeof i72.AfterEqFilterOperatorComponent, typeof i73.BeforeEqFilterOperatorComponent, typeof i74.BeforeFilterOperatorComponent, typeof i75.FilterInputDirective, typeof i76.FilterMenuComponent, typeof i77.FilterMenuContainerComponent, typeof i78.FilterMenuInputWrapperComponent, typeof i79.StringFilterMenuInputComponent, typeof i80.StringFilterMenuComponent, typeof i81.FilterMenuTemplateDirective, typeof i82.NumericFilterMenuComponent, typeof i83.NumericFilterMenuInputComponent, typeof i84.DateFilterMenuInputComponent, typeof i85.DateFilterMenuComponent, typeof i86.FilterMenuHostDirective, typeof i87.BooleanFilterMenuComponent, typeof i88.FilterMenuDropDownListDirective, typeof i89.BooleanFilterRadioButtonDirective, typeof i90.ColumnMenuChooserItemCheckedDirective, typeof i91.ColumnListComponent, typeof i92.ColumnChooserComponent, typeof i93.ColumnMenuChooserComponent, typeof i94.ColumnMenuFilterComponent, typeof i95.ColumnMenuItemComponent, typeof i96.ColumnMenuItemContentTemplateDirective, typeof i97.ColumnMenuSortComponent, typeof i98.ColumnMenuComponent, typeof i99.ColumnMenuLockComponent, typeof i100.ColumnMenuTemplateDirective, typeof i101.ColumnMenuContainerComponent, typeof i102.ColumnMenuItemDirective, typeof i103.ColumnMenuStickComponent, typeof i104.ColumnMenuPositionComponent, typeof i105.ColumnMenuAutoSizeColumnComponent, typeof i106.ColumnMenuAutoSizeAllColumnsComponent, typeof i107.GridComponent, typeof i108.ListComponent, typeof i109.ToolbarComponent, typeof i110.LocalizedMessagesDirective, typeof i111.CustomMessagesComponent, typeof i112.DataBindingDirective, typeof i113.ToolbarTemplateDirective, typeof i114.SelectionDirective, typeof i115.TemplateEditingDirective, typeof i116.ReactiveEditingDirective, typeof i117.InCellEditingDirective, typeof i118.ExpandDetailsDirective, typeof i119.ExpandGroupDirective, typeof i120.GroupBindingDirective, typeof i121.GridMarqueeDirective, typeof i122.GridSpacerComponent, typeof i123.GridToolbarFocusableDirective, typeof i124.StatusBarComponent, typeof i125.StatusBarTemplateDirective, typeof i126.GridClipboardDirective, typeof i45.ToolBarComponent, typeof i45.ToolbarCustomMessagesComponent, typeof i45.ToolBarButtonComponent, typeof i45.ToolBarButtonGroupComponent, typeof i45.ToolBarDropDownButtonComponent, typeof i45.ToolBarSeparatorComponent, typeof i45.ToolBarSpacerComponent, typeof i45.ToolBarSplitButtonComponent, typeof i45.ToolBarToolComponent, typeof i127.TableDirective], [typeof i107.GridComponent, typeof i113.ToolbarTemplateDirective, typeof i109.ToolbarComponent, typeof i122.GridSpacerComponent, typeof i125.StatusBarTemplateDirective, typeof i112.DataBindingDirective, typeof i114.SelectionDirective, typeof i111.CustomMessagesComponent, typeof i120.GroupBindingDirective, typeof i115.TemplateEditingDirective, typeof i116.ReactiveEditingDirective, typeof i117.InCellEditingDirective, typeof i118.ExpandDetailsDirective, typeof i119.ExpandGroupDirective, typeof i123.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.RowDragHandleTemplateDirective, typeof i26.RowDragHintTemplateDirective, typeof i27.TableBodyComponent, typeof i28.NoRecordsTemplateDirective, typeof i29.CellComponent, typeof i30.EditCommandDirective, typeof i31.CancelCommandDirective, typeof i32.SaveCommandDirective, typeof i33.RemoveCommandDirective, typeof i34.AddCommandDirective, typeof i35.AddCommandToolbarDirective, typeof i36.CellLoadingTemplateDirective, typeof i37.LoadingTemplateDirective, typeof i38.RowReorderColumnComponent, typeof i39.HeaderComponent, typeof i40.HeaderTemplateDirective, typeof i41.ColumnHandleDirective, typeof i42.SelectAllCheckboxDirective, typeof i46.FilterRowComponent, typeof i47.FilterCellComponent, typeof i48.FilterCellTemplateDirective, typeof i49.StringFilterCellComponent, typeof i50.NumericFilterCellComponent, typeof i51.AutoCompleteFilterCellComponent, typeof i52.BooleanFilterCellComponent, typeof i53.FilterCellHostDirective, typeof i54.FilterCellWrapperComponent, typeof i55.DateFilterCellComponent, typeof i56.FilterCellOperatorsComponent, typeof i57.ContainsFilterOperatorComponent, typeof i58.DoesNotContainFilterOperatorComponent, typeof i59.EndsWithFilterOperatorComponent, typeof i60.EqualFilterOperatorComponent, typeof i61.IsEmptyFilterOperatorComponent, typeof i62.IsNotEmptyFilterOperatorComponent, typeof i63.IsNotNullFilterOperatorComponent, typeof i64.IsNullFilterOperatorComponent, typeof i65.NotEqualFilterOperatorComponent, typeof i66.StartsWithFilterOperatorComponent, typeof i67.GreaterFilterOperatorComponent, typeof i68.GreaterOrEqualToFilterOperatorComponent, typeof i69.LessFilterOperatorComponent, typeof i70.LessOrEqualToFilterOperatorComponent, typeof i71.AfterFilterOperatorComponent, typeof i72.AfterEqFilterOperatorComponent, typeof i73.BeforeEqFilterOperatorComponent, typeof i74.BeforeFilterOperatorComponent, typeof i76.FilterMenuComponent, typeof i77.FilterMenuContainerComponent, typeof i78.FilterMenuInputWrapperComponent, typeof i79.StringFilterMenuInputComponent, typeof i80.StringFilterMenuComponent, typeof i81.FilterMenuTemplateDirective, typeof i82.NumericFilterMenuComponent, typeof i83.NumericFilterMenuInputComponent, typeof i84.DateFilterMenuInputComponent, typeof i85.DateFilterMenuComponent, typeof i86.FilterMenuHostDirective, typeof i87.BooleanFilterMenuComponent, typeof i88.FilterMenuDropDownListDirective, typeof i89.BooleanFilterRadioButtonDirective, typeof i92.ColumnChooserComponent, typeof i94.ColumnMenuFilterComponent, typeof i95.ColumnMenuItemComponent, typeof i96.ColumnMenuItemContentTemplateDirective, typeof i97.ColumnMenuSortComponent, typeof i99.ColumnMenuLockComponent, typeof i103.ColumnMenuStickComponent, typeof i104.ColumnMenuPositionComponent, typeof i93.ColumnMenuChooserComponent, typeof i100.ColumnMenuTemplateDirective, typeof i101.ColumnMenuContainerComponent, typeof i102.ColumnMenuItemDirective, typeof i98.ColumnMenuComponent, typeof i105.ColumnMenuAutoSizeColumnComponent, typeof i106.ColumnMenuAutoSizeAllColumnsComponent, typeof i126.GridClipboardDirective, typeof i45.ToolBarComponent, typeof i45.ToolbarCustomMessagesComponent, typeof i45.ToolBarButtonComponent, typeof i45.ToolBarButtonGroupComponent, typeof i45.ToolBarDropDownButtonComponent, typeof i45.ToolBarSeparatorComponent, typeof i45.ToolBarSpacerComponent, typeof i45.ToolBarSplitButtonComponent, typeof i45.ToolBarToolComponent, typeof i44.CustomMessagesComponent, typeof i44.PagerFocusableDirective, typeof i44.PagerInfoComponent, typeof i44.PagerInputComponent, typeof i44.PagerNextButtonsComponent, typeof i44.PagerNumericButtonsComponent, typeof i44.PagerPageSizesComponent, typeof i44.PagerPrevButtonsComponent, typeof i44.PagerTemplateDirective, typeof i44.PagerComponent, typeof i44.PagerSpacerComponent]>;
|
|
160
|
+
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.RowDragHandleTemplateDirective, typeof i26.RowDragHintTemplateDirective, typeof i27.TableBodyComponent, typeof i28.NoRecordsTemplateDirective, typeof i29.CellComponent, typeof i30.EditCommandDirective, typeof i31.CancelCommandDirective, typeof i32.SaveCommandDirective, typeof i33.RemoveCommandDirective, typeof i34.AddCommandDirective, typeof i35.AddCommandToolbarDirective, typeof i36.CellLoadingTemplateDirective, typeof i37.LoadingTemplateDirective, typeof i38.RowReorderColumnComponent, typeof i39.HeaderComponent, typeof i40.HeaderTemplateDirective, typeof i41.ColumnHandleDirective, typeof i42.SelectAllCheckboxDirective, typeof i43.FooterComponent, typeof i44.CustomMessagesComponent, typeof i44.PagerFocusableDirective, typeof i44.PagerInfoComponent, typeof i44.PagerInputComponent, typeof i44.PagerNextButtonsComponent, typeof i44.PagerNumericButtonsComponent, typeof i44.PagerPageSizesComponent, typeof i44.PagerPrevButtonsComponent, typeof i44.PagerTemplateDirective, typeof i44.PagerComponent, typeof i44.PagerSpacerComponent, typeof i45.ToolBarComponent, typeof i45.ToolbarCustomMessagesComponent, typeof i45.ToolBarButtonComponent, typeof i45.ToolBarButtonGroupComponent, typeof i45.ToolBarDropDownButtonComponent, typeof i45.ToolBarSeparatorComponent, typeof i45.ToolBarSpacerComponent, typeof i45.ToolBarSplitButtonComponent, typeof i45.ToolBarToolComponent, typeof i46.FilterRowComponent, typeof i47.FilterCellComponent, typeof i48.FilterCellTemplateDirective, typeof i49.StringFilterCellComponent, typeof i50.NumericFilterCellComponent, typeof i51.AutoCompleteFilterCellComponent, typeof i52.BooleanFilterCellComponent, typeof i53.FilterCellHostDirective, typeof i54.FilterCellWrapperComponent, typeof i55.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 i56.FilterCellOperatorsComponent, typeof i57.ContainsFilterOperatorComponent, typeof i58.DoesNotContainFilterOperatorComponent, typeof i59.EndsWithFilterOperatorComponent, typeof i60.EqualFilterOperatorComponent, typeof i61.IsEmptyFilterOperatorComponent, typeof i62.IsNotEmptyFilterOperatorComponent, typeof i63.IsNotNullFilterOperatorComponent, typeof i64.IsNullFilterOperatorComponent, typeof i65.NotEqualFilterOperatorComponent, typeof i66.StartsWithFilterOperatorComponent, typeof i67.GreaterFilterOperatorComponent, typeof i68.GreaterOrEqualToFilterOperatorComponent, typeof i69.LessFilterOperatorComponent, typeof i70.LessOrEqualToFilterOperatorComponent, typeof i71.AfterFilterOperatorComponent, typeof i72.AfterEqFilterOperatorComponent, typeof i73.BeforeEqFilterOperatorComponent, typeof i74.BeforeFilterOperatorComponent, typeof i75.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 i56.FilterCellOperatorsComponent, typeof i57.ContainsFilterOperatorComponent, typeof i58.DoesNotContainFilterOperatorComponent, typeof i59.EndsWithFilterOperatorComponent, typeof i60.EqualFilterOperatorComponent, typeof i61.IsEmptyFilterOperatorComponent, typeof i62.IsNotEmptyFilterOperatorComponent, typeof i63.IsNotNullFilterOperatorComponent, typeof i64.IsNullFilterOperatorComponent, typeof i65.NotEqualFilterOperatorComponent, typeof i66.StartsWithFilterOperatorComponent, typeof i67.GreaterFilterOperatorComponent, typeof i68.GreaterOrEqualToFilterOperatorComponent, typeof i69.LessFilterOperatorComponent, typeof i70.LessOrEqualToFilterOperatorComponent, typeof i71.AfterFilterOperatorComponent, typeof i72.AfterEqFilterOperatorComponent, typeof i73.BeforeEqFilterOperatorComponent, typeof i74.BeforeFilterOperatorComponent, typeof i75.FilterInputDirective, typeof i76.FilterMenuComponent, typeof i77.FilterMenuContainerComponent, typeof i78.FilterMenuInputWrapperComponent, typeof i79.StringFilterMenuInputComponent, typeof i80.StringFilterMenuComponent, typeof i81.FilterMenuTemplateDirective, typeof i82.NumericFilterMenuComponent, typeof i83.NumericFilterMenuInputComponent, typeof i84.DateFilterMenuInputComponent, typeof i85.DateFilterMenuComponent, typeof i86.FilterMenuHostDirective, typeof i87.BooleanFilterMenuComponent, typeof i88.FilterMenuDropDownListDirective, typeof i89.BooleanFilterRadioButtonDirective, typeof i90.ColumnMenuChooserItemCheckedDirective, typeof i91.ColumnListComponent, typeof i92.ColumnChooserComponent, typeof i93.ColumnMenuChooserComponent, typeof i94.ColumnMenuFilterComponent, typeof i95.ColumnMenuItemComponent, typeof i96.ColumnMenuItemContentTemplateDirective, typeof i97.ColumnMenuSortComponent, typeof i98.ColumnMenuComponent, typeof i99.ColumnMenuLockComponent, typeof i100.ColumnMenuTemplateDirective, typeof i101.ColumnMenuContainerComponent, typeof i102.ColumnMenuItemDirective, typeof i103.ColumnMenuStickComponent, typeof i104.ColumnMenuPositionComponent, typeof i105.ColumnMenuAutoSizeColumnComponent, typeof i106.ColumnMenuAutoSizeAllColumnsComponent, typeof i107.GridComponent, typeof i108.ListComponent, typeof i109.ToolbarComponent, typeof i110.LocalizedMessagesDirective, typeof i111.CustomMessagesComponent, typeof i112.DataBindingDirective, typeof i113.ToolbarTemplateDirective, typeof i114.SelectionDirective, typeof i115.TemplateEditingDirective, typeof i116.ReactiveEditingDirective, typeof i117.InCellEditingDirective, typeof i118.ExternalEditingDirective, typeof i119.ExpandDetailsDirective, typeof i120.ExpandGroupDirective, typeof i121.GroupBindingDirective, typeof i122.GridMarqueeDirective, typeof i123.GridSpacerComponent, typeof i124.GridToolbarFocusableDirective, typeof i125.StatusBarComponent, typeof i126.StatusBarTemplateDirective, typeof i127.GridClipboardDirective, typeof i128.FormComponent, typeof i129.DialogFormComponent, typeof i130.FormFormFieldComponent, typeof i45.ToolBarComponent, typeof i45.ToolbarCustomMessagesComponent, typeof i45.ToolBarButtonComponent, typeof i45.ToolBarButtonGroupComponent, typeof i45.ToolBarDropDownButtonComponent, typeof i45.ToolBarSeparatorComponent, typeof i45.ToolBarSpacerComponent, typeof i45.ToolBarSplitButtonComponent, typeof i45.ToolBarToolComponent, typeof i131.TableDirective], [typeof i107.GridComponent, typeof i113.ToolbarTemplateDirective, typeof i109.ToolbarComponent, typeof i123.GridSpacerComponent, typeof i126.StatusBarTemplateDirective, typeof i112.DataBindingDirective, typeof i114.SelectionDirective, typeof i111.CustomMessagesComponent, typeof i121.GroupBindingDirective, typeof i115.TemplateEditingDirective, typeof i116.ReactiveEditingDirective, typeof i117.InCellEditingDirective, typeof i118.ExternalEditingDirective, typeof i119.ExpandDetailsDirective, typeof i120.ExpandGroupDirective, typeof i124.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.RowDragHandleTemplateDirective, typeof i26.RowDragHintTemplateDirective, typeof i27.TableBodyComponent, typeof i28.NoRecordsTemplateDirective, typeof i29.CellComponent, typeof i30.EditCommandDirective, typeof i31.CancelCommandDirective, typeof i32.SaveCommandDirective, typeof i33.RemoveCommandDirective, typeof i34.AddCommandDirective, typeof i35.AddCommandToolbarDirective, typeof i36.CellLoadingTemplateDirective, typeof i37.LoadingTemplateDirective, typeof i38.RowReorderColumnComponent, typeof i39.HeaderComponent, typeof i40.HeaderTemplateDirective, typeof i41.ColumnHandleDirective, typeof i42.SelectAllCheckboxDirective, typeof i46.FilterRowComponent, typeof i47.FilterCellComponent, typeof i48.FilterCellTemplateDirective, typeof i49.StringFilterCellComponent, typeof i50.NumericFilterCellComponent, typeof i51.AutoCompleteFilterCellComponent, typeof i52.BooleanFilterCellComponent, typeof i53.FilterCellHostDirective, typeof i54.FilterCellWrapperComponent, typeof i55.DateFilterCellComponent, typeof i56.FilterCellOperatorsComponent, typeof i57.ContainsFilterOperatorComponent, typeof i58.DoesNotContainFilterOperatorComponent, typeof i59.EndsWithFilterOperatorComponent, typeof i60.EqualFilterOperatorComponent, typeof i61.IsEmptyFilterOperatorComponent, typeof i62.IsNotEmptyFilterOperatorComponent, typeof i63.IsNotNullFilterOperatorComponent, typeof i64.IsNullFilterOperatorComponent, typeof i65.NotEqualFilterOperatorComponent, typeof i66.StartsWithFilterOperatorComponent, typeof i67.GreaterFilterOperatorComponent, typeof i68.GreaterOrEqualToFilterOperatorComponent, typeof i69.LessFilterOperatorComponent, typeof i70.LessOrEqualToFilterOperatorComponent, typeof i71.AfterFilterOperatorComponent, typeof i72.AfterEqFilterOperatorComponent, typeof i73.BeforeEqFilterOperatorComponent, typeof i74.BeforeFilterOperatorComponent, typeof i76.FilterMenuComponent, typeof i77.FilterMenuContainerComponent, typeof i78.FilterMenuInputWrapperComponent, typeof i79.StringFilterMenuInputComponent, typeof i80.StringFilterMenuComponent, typeof i81.FilterMenuTemplateDirective, typeof i82.NumericFilterMenuComponent, typeof i83.NumericFilterMenuInputComponent, typeof i84.DateFilterMenuInputComponent, typeof i85.DateFilterMenuComponent, typeof i86.FilterMenuHostDirective, typeof i87.BooleanFilterMenuComponent, typeof i88.FilterMenuDropDownListDirective, typeof i89.BooleanFilterRadioButtonDirective, typeof i92.ColumnChooserComponent, typeof i94.ColumnMenuFilterComponent, typeof i95.ColumnMenuItemComponent, typeof i96.ColumnMenuItemContentTemplateDirective, typeof i97.ColumnMenuSortComponent, typeof i99.ColumnMenuLockComponent, typeof i103.ColumnMenuStickComponent, typeof i104.ColumnMenuPositionComponent, typeof i93.ColumnMenuChooserComponent, typeof i100.ColumnMenuTemplateDirective, typeof i101.ColumnMenuContainerComponent, typeof i102.ColumnMenuItemDirective, typeof i98.ColumnMenuComponent, typeof i105.ColumnMenuAutoSizeColumnComponent, typeof i106.ColumnMenuAutoSizeAllColumnsComponent, typeof i127.GridClipboardDirective, typeof i45.ToolBarComponent, typeof i45.ToolbarCustomMessagesComponent, typeof i45.ToolBarButtonComponent, typeof i45.ToolBarButtonGroupComponent, typeof i45.ToolBarDropDownButtonComponent, typeof i45.ToolBarSeparatorComponent, typeof i45.ToolBarSpacerComponent, typeof i45.ToolBarSplitButtonComponent, typeof i45.ToolBarToolComponent, typeof i44.CustomMessagesComponent, typeof i44.PagerFocusableDirective, typeof i44.PagerInfoComponent, typeof i44.PagerInputComponent, typeof i44.PagerNextButtonsComponent, typeof i44.PagerNumericButtonsComponent, typeof i44.PagerPageSizesComponent, typeof i44.PagerPrevButtonsComponent, typeof i44.PagerTemplateDirective, typeof i44.PagerComponent, typeof i44.PagerSpacerComponent]>;
|
|
157
161
|
static ɵinj: i0.ɵɵInjectorDeclaration<GridModule>;
|
|
158
162
|
}
|
package/index.d.ts
CHANGED
|
@@ -119,6 +119,7 @@ export { LessFilterOperatorComponent } from './filtering/operators/lt-filter-ope
|
|
|
119
119
|
export * from './filtering/filterable';
|
|
120
120
|
export { TemplateEditingDirective } from './editing-directives/template-editing.directive';
|
|
121
121
|
export { ReactiveEditingDirective } from './editing-directives/reactive-editing.directive';
|
|
122
|
+
export { ExternalEditingDirective } from './editing-directives/external-editing.directive';
|
|
122
123
|
export { InCellEditingDirective } from './editing-directives/in-cell-editing.directive';
|
|
123
124
|
export { CreateFormGroupArgs } from './editing-directives/create-form-group-args.interface';
|
|
124
125
|
export { EditTemplateDirective } from './editing/edit-template.directive';
|
|
@@ -156,6 +157,8 @@ export { CellClickEvent } from './common/cell-click-event-args.interface';
|
|
|
156
157
|
export { CellCloseEvent } from './editing/cell-close-event';
|
|
157
158
|
export { CreateFormGroup } from './common/create-form-group';
|
|
158
159
|
export { RemoveConfirmationCallback } from './common/remove-confirmation';
|
|
160
|
+
export { FormSettings, FormFieldSettings, FormDialogSettings } from './editing/form/models';
|
|
161
|
+
export { FieldDataType } from './common/field-datatype';
|
|
159
162
|
export { ColumnInfoService } from './common/column-info.service';
|
|
160
163
|
export { ScrollBottomEvent } from './scrolling/scroll-bottom-event';
|
|
161
164
|
export { ContentScrollEvent } from './scrolling/content-scroll-event';
|
|
@@ -410,6 +410,51 @@ export declare class GridMessages extends ComponentMessages {
|
|
|
410
410
|
* The text for the Group pane Chip Menu Move as next item.
|
|
411
411
|
*/
|
|
412
412
|
groupChipMenuNext: string;
|
|
413
|
+
/**
|
|
414
|
+
* The default text of a form validation error when using the built-in external editing.
|
|
415
|
+
* <br/><br/>
|
|
416
|
+
* The text consists of a three-part message—the name of the data item property the respective Grid column is bound to,
|
|
417
|
+
* the name of the error, coming from the respective `FormControl` object, and a localizable string.
|
|
418
|
+
* <br/><br/>
|
|
419
|
+
* For a field named `ProductName`, and an error named `required`, the default error text will be `ProductName has required validation error`.
|
|
420
|
+
* <br/><br/>
|
|
421
|
+
* To customize the default text of the form validation error, use the `{errorName}` and `{fieldName}` placeholders and a custom localizable string.
|
|
422
|
+
* For example, `{errorName} detected for {fieldName} field`.
|
|
423
|
+
* <br/><br/>
|
|
424
|
+
* The `{errorName}` and `{fieldName}` placeholders will be replaced internally with the field and error names for the respective invalid form control,
|
|
425
|
+
* and the resulting error message will be rendered as `required error detected for ProductName field`.
|
|
426
|
+
* [See example](slug:globalization_grid#toc-custom-messages).
|
|
427
|
+
*
|
|
428
|
+
*/
|
|
429
|
+
formValidationErrorText: string;
|
|
430
|
+
/**
|
|
431
|
+
* The title of the remove item confirmation Dialog.
|
|
432
|
+
*/
|
|
433
|
+
removeConfirmationDialogTitle: string;
|
|
434
|
+
/**
|
|
435
|
+
* The content of the remove item confirmation Dialog.
|
|
436
|
+
*/
|
|
437
|
+
removeConfirmationDialogContent: string;
|
|
438
|
+
/**
|
|
439
|
+
* The text of the confirm action button in the remove confirmation Dialog.
|
|
440
|
+
*/
|
|
441
|
+
removeConfirmationDialogConfirmText: string;
|
|
442
|
+
/**
|
|
443
|
+
* The text of the reject action button in the remove confirmation Dialog.
|
|
444
|
+
*/
|
|
445
|
+
removeConfirmationDialogRejectText: string;
|
|
446
|
+
/**
|
|
447
|
+
* The title of the external editing Dialog.
|
|
448
|
+
*/
|
|
449
|
+
externalEditingTitle: string;
|
|
450
|
+
/**
|
|
451
|
+
* The text of the external editing Dialog <b>Save</b> button.
|
|
452
|
+
*/
|
|
453
|
+
externalEditingSaveText: string;
|
|
454
|
+
/**
|
|
455
|
+
* The text of the external editing Dialog <b>Cancel</b> button.
|
|
456
|
+
*/
|
|
457
|
+
externalEditingCancelText: string;
|
|
413
458
|
static ɵfac: i0.ɵɵFactoryDeclaration<GridMessages, never>;
|
|
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>;
|
|
459
|
+
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; }; "formValidationErrorText": { "alias": "formValidationErrorText"; "required": false; }; "removeConfirmationDialogTitle": { "alias": "removeConfirmationDialogTitle"; "required": false; }; "removeConfirmationDialogContent": { "alias": "removeConfirmationDialogContent"; "required": false; }; "removeConfirmationDialogConfirmText": { "alias": "removeConfirmationDialogConfirmText"; "required": false; }; "removeConfirmationDialogRejectText": { "alias": "removeConfirmationDialogRejectText"; "required": false; }; "externalEditingTitle": { "alias": "externalEditingTitle"; "required": false; }; "externalEditingSaveText": { "alias": "externalEditingSaveText"; "required": false; }; "externalEditingCancelText": { "alias": "externalEditingCancelText"; "required": false; }; }, {}, never, never, false, never>;
|
|
415
460
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-grid",
|
|
3
|
-
"version": "18.5.0-develop.
|
|
3
|
+
"version": "18.5.0-develop.4",
|
|
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",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"package": {
|
|
27
27
|
"productName": "Kendo UI for Angular",
|
|
28
28
|
"productCode": "KENDOUIANGULAR",
|
|
29
|
-
"publishDate":
|
|
29
|
+
"publishDate": 1743767484,
|
|
30
30
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
31
31
|
}
|
|
32
32
|
},
|
|
@@ -39,27 +39,27 @@
|
|
|
39
39
|
"@progress/kendo-data-query": "^1.0.0",
|
|
40
40
|
"@progress/kendo-drawing": "^1.21.0",
|
|
41
41
|
"@progress/kendo-licensing": "^1.5.0",
|
|
42
|
-
"@progress/kendo-angular-buttons": "18.5.0-develop.
|
|
43
|
-
"@progress/kendo-angular-common": "18.5.0-develop.
|
|
44
|
-
"@progress/kendo-angular-dateinputs": "18.5.0-develop.
|
|
45
|
-
"@progress/kendo-angular-layout": "18.5.0-develop.
|
|
46
|
-
"@progress/kendo-angular-dropdowns": "18.5.0-develop.
|
|
47
|
-
"@progress/kendo-angular-excel-export": "18.5.0-develop.
|
|
48
|
-
"@progress/kendo-angular-icons": "18.5.0-develop.
|
|
49
|
-
"@progress/kendo-angular-inputs": "18.5.0-develop.
|
|
50
|
-
"@progress/kendo-angular-intl": "18.5.0-develop.
|
|
51
|
-
"@progress/kendo-angular-l10n": "18.5.0-develop.
|
|
52
|
-
"@progress/kendo-angular-label": "18.5.0-develop.
|
|
53
|
-
"@progress/kendo-angular-pager": "18.5.0-develop.
|
|
54
|
-
"@progress/kendo-angular-pdf-export": "18.5.0-develop.
|
|
55
|
-
"@progress/kendo-angular-popup": "18.5.0-develop.
|
|
56
|
-
"@progress/kendo-angular-toolbar": "18.5.0-develop.
|
|
57
|
-
"@progress/kendo-angular-utils": "18.5.0-develop.
|
|
42
|
+
"@progress/kendo-angular-buttons": "18.5.0-develop.4",
|
|
43
|
+
"@progress/kendo-angular-common": "18.5.0-develop.4",
|
|
44
|
+
"@progress/kendo-angular-dateinputs": "18.5.0-develop.4",
|
|
45
|
+
"@progress/kendo-angular-layout": "18.5.0-develop.4",
|
|
46
|
+
"@progress/kendo-angular-dropdowns": "18.5.0-develop.4",
|
|
47
|
+
"@progress/kendo-angular-excel-export": "18.5.0-develop.4",
|
|
48
|
+
"@progress/kendo-angular-icons": "18.5.0-develop.4",
|
|
49
|
+
"@progress/kendo-angular-inputs": "18.5.0-develop.4",
|
|
50
|
+
"@progress/kendo-angular-intl": "18.5.0-develop.4",
|
|
51
|
+
"@progress/kendo-angular-l10n": "18.5.0-develop.4",
|
|
52
|
+
"@progress/kendo-angular-label": "18.5.0-develop.4",
|
|
53
|
+
"@progress/kendo-angular-pager": "18.5.0-develop.4",
|
|
54
|
+
"@progress/kendo-angular-pdf-export": "18.5.0-develop.4",
|
|
55
|
+
"@progress/kendo-angular-popup": "18.5.0-develop.4",
|
|
56
|
+
"@progress/kendo-angular-toolbar": "18.5.0-develop.4",
|
|
57
|
+
"@progress/kendo-angular-utils": "18.5.0-develop.4",
|
|
58
58
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"tslib": "^2.3.1",
|
|
62
|
-
"@progress/kendo-angular-schematics": "18.5.0-develop.
|
|
62
|
+
"@progress/kendo-angular-schematics": "18.5.0-develop.4",
|
|
63
63
|
"@progress/kendo-common": "^1.0.1",
|
|
64
64
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
65
65
|
},
|
|
@@ -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': '18.5.0-develop.
|
|
8
|
-
'@progress/kendo-angular-navigation': '18.5.0-develop.
|
|
7
|
+
'@progress/kendo-angular-treeview': '18.5.0-develop.4',
|
|
8
|
+
'@progress/kendo-angular-navigation': '18.5.0-develop.4',
|
|
9
9
|
// peer dependency of kendo-angular-inputs
|
|
10
|
-
'@progress/kendo-angular-dialog': '18.5.0-develop.
|
|
10
|
+
'@progress/kendo-angular-dialog': '18.5.0-develop.4',
|
|
11
11
|
// peer dependency of kendo-angular-icons
|
|
12
12
|
'@progress/kendo-svg-icons': '^4.0.0',
|
|
13
13
|
// peer dependency of kendo-angular-layout
|
|
14
|
-
'@progress/kendo-angular-progressbar': '18.5.0-develop.
|
|
14
|
+
'@progress/kendo-angular-progressbar': '18.5.0-develop.4'
|
|
15
15
|
} });
|
|
16
16
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
17
17
|
}
|