@harnessio/ui 0.5.37 → 0.5.39

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.
@@ -4,3 +4,13 @@ declare const tailwindDesignSystem: Config;
4
4
  export default tailwindDesignSystem;
5
5
 
6
6
  export { }
7
+
8
+
9
+ declare module '@tanstack/react-table' {
10
+ interface ColumnMeta<TData, TValue> {
11
+ /** Additional class names applied to the header cell */
12
+ headerClassName?: string;
13
+ /** When true, applies group-header styling (auto-detected when column has nested `columns`) */
14
+ isGroupHeader?: boolean;
15
+ }
16
+ }
@@ -14,3 +14,13 @@ declare const _default: {
14
14
  export default _default;
15
15
 
16
16
  export { }
17
+
18
+
19
+ declare module '@tanstack/react-table' {
20
+ interface ColumnMeta<TData, TValue> {
21
+ /** Additional class names applied to the header cell */
22
+ headerClassName?: string;
23
+ /** When true, applies group-header styling (auto-detected when column has nested `columns`) */
24
+ isGroupHeader?: boolean;
25
+ }
26
+ }