@stenajs-webui/grid 23.14.0 → 23.15.1

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.
@@ -30,7 +30,11 @@ export interface StandardTableColumnOptions<TItem, TItemValue, TColumnKey extend
30
30
  */
31
31
  columnLabel?: string;
32
32
  /**
33
- * This shows a tooltip on the left side of the column header label.
33
+ * This shows some content on the right side of the column header label, before the infoIcon.
34
+ */
35
+ columnHeadContent?: ReactNode;
36
+ /**
37
+ * This shows a tooltip on the right side of the column header label.
34
38
  */
35
39
  infoIconTooltipText?: string;
36
40
  /**
@@ -8,6 +8,7 @@ export interface TableHeadProps extends BoxProps {
8
8
  infoIconTooltipAppendTo?: TooltipProps["appendTo"];
9
9
  infoIconTooltipText?: string;
10
10
  infoIconTooltipZIndex?: number;
11
+ columnHeadContent?: ReactNode;
11
12
  popoverContent?: ReactNode;
12
13
  loading?: boolean;
13
14
  arrow?: SortOrderDirection;