@parasutcom/fds 0.1.18 → 0.1.19

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
@@ -205,7 +205,7 @@ export declare function ChartTooltipContent({ active, payload, className, indica
205
205
  labelKey?: string;
206
206
  }): JSX.Element | null;
207
207
 
208
- export declare function Checkbox({ className, ...props }: Checkbox_2.Root.Props): JSX.Element;
208
+ export declare function Checkbox({ className, indeterminate, ...props }: Checkbox_2.Root.Props): JSX.Element;
209
209
 
210
210
  export declare function cn(...inputs: ClassValue[]): string;
211
211
 
@@ -832,7 +832,7 @@ declare module '@tanstack/react-table' {
832
832
  interface ColumnMeta<TData extends RowData, TValue> {
833
833
  /** Cell and header content alignment */
834
834
  align?: 'left' | 'right' | 'center';
835
- /** Additional className applied to the sortable header button */
836
- headerClassName?: string;
835
+ /** Additional className applied to both <th> and <td> elements of the column (e.g., 'w-20') */
836
+ className?: string;
837
837
  }
838
838
  }