ids-enterprise-typings 14.8.0 → 15.0.0
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.
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
type SohoDataGridRowHeight = 'extra-small' | 'small' | 'medium' | 'large' | 'short' | 'medium' | 'normal';
|
|
12
12
|
type SohoDataGridTextAlign = 'left' | 'center' | 'right';
|
|
13
13
|
type SohoDataGridResizeMode = 'flex' | 'fit';
|
|
14
|
+
type SohoDatagridHeaderBackgroundColor = 'dark' | 'light';
|
|
14
15
|
type SohoFallbackTooltipOptions = {
|
|
15
16
|
content: string;
|
|
16
17
|
delay: number;
|
|
@@ -221,6 +222,9 @@ interface SohoDataGridOptions {
|
|
|
221
222
|
/** Allow to hide the checkbox header (true to show, false to hide) */
|
|
222
223
|
showSelectAllCheckBox?: boolean;
|
|
223
224
|
|
|
225
|
+
/** Ability to set background color of datagrid header either light or dark. */
|
|
226
|
+
headerBackgroundColor?: SohoDatagridHeaderBackgroundColor;
|
|
227
|
+
|
|
224
228
|
/** Only allows one expandable row at a time. */
|
|
225
229
|
allowOneExpandedRow?: boolean;
|
|
226
230
|
|