@@ -7,12 +7,6 @@ import { ComponentType, CSSProperties, ReactNode } from "react";
77import { ActionValue , DynamicValue , EditableValue , ListValue , ListActionValue , ListAttributeValue , ListAttributeListValue , ListExpressionValue , ListWidgetValue , SelectionSingleValue , SelectionMultiValue } from "mendix" ;
88import { Big } from "big.js" ;
99
10- export type ItemSelectionMethodEnum = "checkbox" | "rowClick" ;
11-
12- export type ItemSelectionModeEnum = "toggle" | "clear" ;
13-
14- export type LoadingTypeEnum = "spinner" | "skeleton" ;
15-
1610export type ShowContentAsEnum = "attribute" | "dynamicText" | "customContent" ;
1711
1812export type ExportTypeEnum = "default" | "number" | "date" | "boolean" ;
@@ -106,15 +100,7 @@ export interface DatagridContainerProps {
106100 tabIndex ?: number ;
107101 datasource : ListValue ;
108102 refreshInterval : number ;
109- itemSelection ?: SelectionSingleValue | SelectionMultiValue ;
110- itemSelectionMethod : ItemSelectionMethodEnum ;
111103 autoSelect : boolean ;
112- itemSelectionMode : ItemSelectionModeEnum ;
113- showSelectAllToggle : boolean ;
114- keepSelection : boolean ;
115- clearSelectionButtonLabel ?: DynamicValue < string > ;
116- loadingType : LoadingTypeEnum ;
117- refreshIndicator : boolean ;
118104 columns : ColumnsType [ ] ;
119105 columnsFilterable : boolean ;
120106 onClickTrigger : OnClickTriggerEnum ;
@@ -174,15 +160,7 @@ export interface DatagridPreviewProps {
174160 translate : ( text : string ) => string ;
175161 datasource : { } | { caption : string } | { type : string } | null ;
176162 refreshInterval : number | null ;
177- itemSelection : "None" | "Single" | "Multi" ;
178- itemSelectionMethod : ItemSelectionMethodEnum ;
179163 autoSelect : boolean ;
180- itemSelectionMode : ItemSelectionModeEnum ;
181- showSelectAllToggle : boolean ;
182- keepSelection : boolean ;
183- clearSelectionButtonLabel : string ;
184- loadingType : LoadingTypeEnum ;
185- refreshIndicator : boolean ;
186164 columns : ColumnsPreviewType [ ] ;
187165 columnsFilterable : boolean ;
188166 onClickTrigger : OnClickTriggerEnum ;
0 commit comments