lucent-ui 0.42.0 → 0.43.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.
package/dist/index.d.ts CHANGED
@@ -698,6 +698,8 @@ export declare interface DataTableColumn<T> {
698
698
  headerFilter?: ReactNode;
699
699
  width?: string;
700
700
  align?: 'left' | 'center' | 'right';
701
+ /** Pin this column so it stays visible when the table scrolls horizontally */
702
+ sticky?: boolean;
701
703
  }
702
704
 
703
705
  export declare interface DataTableProps<T extends object> {