@muraldevkit/ui-toolkit 2.57.2 → 2.58.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.
@@ -99,6 +99,10 @@ export interface MrlSmartTableColumn {
99
99
  * the columns to be 'sticky'
100
100
  */
101
101
  sticky?: MrlTableColumnSticky;
102
+ /**
103
+ * A tooltip to display on the column header.
104
+ */
105
+ tooltip?: string;
102
106
  }
103
107
  /**
104
108
  * A set of item ids.
@@ -6,10 +6,17 @@ export declare const SAMPLE_COLUMNS: ({
6
6
  allowsSorting: boolean;
7
7
  id: string;
8
8
  name: string;
9
+ tooltip?: undefined;
10
+ } | {
11
+ allowsSorting: boolean;
12
+ id: string;
13
+ name: string;
14
+ tooltip: string;
9
15
  } | {
10
16
  id: string;
11
17
  name: string;
12
18
  allowsSorting?: undefined;
19
+ tooltip?: undefined;
13
20
  })[];
14
21
  export declare const SAMPLE_ITEMS: {
15
22
  dateModified: string;