@@ -36,6 +36,7 @@ import { Store } from 'devextreme/data/store';
3636import { dxFormOptions } from 'devextreme/ui/form' ;
3737import { dxPopupOptions } from 'devextreme/ui/popup' ;
3838import { dxFilterBuilderOptions } from 'devextreme/ui/filter_builder' ;
39+ import { LoadPanelIndicatorProperties } from 'devextreme/ui/load_panel' ;
3940import { event } from 'devextreme/events/events.types' ;
4041import { Format } from 'devextreme/common/core/localization' ;
4142
@@ -173,6 +174,7 @@ import { DxoDataGridGroupPanelModule } from 'devextreme-angular/ui/data-grid/nes
173174import { DxoDataGridHeaderFilterModule } from 'devextreme-angular/ui/data-grid/nested' ;
174175import { DxoDataGridHideModule } from 'devextreme-angular/ui/data-grid/nested' ;
175176import { DxoDataGridIconsModule } from 'devextreme-angular/ui/data-grid/nested' ;
177+ import { DxoDataGridIndicatorOptionsModule } from 'devextreme-angular/ui/data-grid/nested' ;
176178import { DxiDataGridItemModule } from 'devextreme-angular/ui/data-grid/nested' ;
177179import { DxoDataGridKeyboardNavigationModule } from 'devextreme-angular/ui/data-grid/nested' ;
178180import { DxoDataGridLabelModule } from 'devextreme-angular/ui/data-grid/nested' ;
@@ -879,10 +881,10 @@ export class DxDataGridComponent<TRowData = any, TKey = any> extends DxComponent
879881
880882 */
881883 @Input ( )
882- get loadPanel ( ) : { enabled ?: boolean | Mode , height ?: number | string , indicatorSrc ?: string , shading ?: boolean , shadingColor ?: string , showIndicator ?: boolean , showPane ?: boolean , text ?: string , width ?: number | string } {
884+ get loadPanel ( ) : { enabled ?: boolean | Mode , height ?: number | string , indicatorOptions ?: LoadPanelIndicatorProperties , indicatorSrc ?: string , shading ?: boolean , shadingColor ?: string , showIndicator ?: boolean , showPane ?: boolean , text ?: string , width ?: number | string } {
883885 return this . _getOption ( 'loadPanel' ) ;
884886 }
885- set loadPanel ( value : { enabled ?: boolean | Mode , height ?: number | string , indicatorSrc ?: string , shading ?: boolean , shadingColor ?: string , showIndicator ?: boolean , showPane ?: boolean , text ?: string , width ?: number | string } ) {
887+ set loadPanel ( value : { enabled ?: boolean | Mode , height ?: number | string , indicatorOptions ?: LoadPanelIndicatorProperties , indicatorSrc ?: string , shading ?: boolean , shadingColor ?: string , showIndicator ?: boolean , showPane ?: boolean , text ?: string , width ?: number | string } ) {
886888 this . _setOption ( 'loadPanel' , value ) ;
887889 }
888890
@@ -1948,7 +1950,7 @@ export class DxDataGridComponent<TRowData = any, TKey = any> extends DxComponent
19481950 * This member supports the internal infrastructure and is not intended to be used directly from your code.
19491951
19501952 */
1951- @Output ( ) loadPanelChange : EventEmitter < { enabled ?: boolean | Mode , height ?: number | string , indicatorSrc ?: string , shading ?: boolean , shadingColor ?: string , showIndicator ?: boolean , showPane ?: boolean , text ?: string , width ?: number | string } > ;
1953+ @Output ( ) loadPanelChange : EventEmitter < { enabled ?: boolean | Mode , height ?: number | string , indicatorOptions ?: LoadPanelIndicatorProperties , indicatorSrc ?: string , shading ?: boolean , shadingColor ?: string , showIndicator ?: boolean , showPane ?: boolean , text ?: string , width ?: number | string } > ;
19521954
19531955 /**
19541956
@@ -2477,6 +2479,7 @@ export class DxDataGridComponent<TRowData = any, TKey = any> extends DxComponent
24772479 DxoDataGridHeaderFilterModule ,
24782480 DxoDataGridHideModule ,
24792481 DxoDataGridIconsModule ,
2482+ DxoDataGridIndicatorOptionsModule ,
24802483 DxiDataGridItemModule ,
24812484 DxoDataGridKeyboardNavigationModule ,
24822485 DxoDataGridLabelModule ,
@@ -2639,6 +2642,7 @@ export class DxDataGridComponent<TRowData = any, TKey = any> extends DxComponent
26392642 DxoDataGridHeaderFilterModule ,
26402643 DxoDataGridHideModule ,
26412644 DxoDataGridIconsModule ,
2645+ DxoDataGridIndicatorOptionsModule ,
26422646 DxiDataGridItemModule ,
26432647 DxoDataGridKeyboardNavigationModule ,
26442648 DxoDataGridLabelModule ,
0 commit comments