@stenajs-webui/grid 23.12.2 → 23.12.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.
@@ -119,6 +119,10 @@ export interface StandardTableColumnOptions<TItem, TItemValue, TColumnKey extend
119
119
  * Col span for the summary cell.
120
120
  */
121
121
  summaryCellColSpan?: number;
122
+ /**
123
+ * Height of the cell.
124
+ */
125
+ height?: string | number;
122
126
  }
123
127
  export type StandardTableSummaryTextProvider<TItem> = (arg: StandardTableSummaryTextProviderArgObject<TItem>) => string;
124
128
  export interface StandardTableSummaryTextProviderArgObject<TItem> {
@@ -143,6 +147,7 @@ export interface StandardTableCellRendererArgObject<TItemValue, TItem> {
143
147
  * The z-index used for that cell. Usable if the cell has a popover which should get same z-index for example.
144
148
  */
145
149
  zIndex?: number | string;
150
+ height?: number | string;
146
151
  }
147
152
  /**
148
153
  * Default renderer. This is defined in config, not for a specific column.