aha-components 1.5.3 → 1.5.4

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.
@@ -123,6 +123,7 @@ export interface TableProps<T = any> {
123
123
  onRow?: (record: T, index?: number) => React.HTMLAttributes<HTMLTableRowElement>;
124
124
  getPopupContainer?: (triggerNode: HTMLElement) => HTMLElement;
125
125
  className?: string;
126
+ innerClassName?: string;
126
127
  style?: React.CSSProperties;
127
128
  children?: React.ReactNode;
128
129
  expandable?: {
@@ -162,5 +163,5 @@ export interface TableProps<T = any> {
162
163
  getContainer?: () => HTMLElement;
163
164
  };
164
165
  }
165
- declare const Table: <T extends Record<string, any> = any>({ columns, dataSource, rowKey, rowSelection, pagination, size, bordered, loading, locale, showHeader, title, footer, summary, scroll, tableLayout, onChange, onSorterChange, onPaginationChange, onRow, className, style, expandable, rowClassName, onHeaderRow, sticky, ...rest }: TableProps<T>) => import("react/jsx-runtime").JSX.Element;
166
+ declare const Table: <T extends Record<string, any> = any>({ columns, dataSource, rowKey, rowSelection, pagination, size, bordered, loading, locale, showHeader, title, footer, summary, scroll, tableLayout, onChange, onSorterChange, onPaginationChange, onRow, className, innerClassName, style, expandable, rowClassName, onHeaderRow, sticky, ...rest }: TableProps<T>) => import("react/jsx-runtime").JSX.Element;
166
167
  export default Table;
package/dist/index.d.ts CHANGED
@@ -219,6 +219,7 @@ interface TableProps<T = any> {
219
219
  onRow?: (record: T, index?: number) => React.HTMLAttributes<HTMLTableRowElement>;
220
220
  getPopupContainer?: (triggerNode: HTMLElement) => HTMLElement;
221
221
  className?: string;
222
+ innerClassName?: string;
222
223
  style?: React.CSSProperties;
223
224
  children?: React.ReactNode;
224
225
  expandable?: {
@@ -258,7 +259,7 @@ interface TableProps<T = any> {
258
259
  getContainer?: () => HTMLElement;
259
260
  };
260
261
  }
261
- declare const Table: <T extends Record<string, any> = any>({ columns, dataSource, rowKey, rowSelection, pagination, size, bordered, loading, locale, showHeader, title, footer, summary, scroll, tableLayout, onChange, onSorterChange, onPaginationChange, onRow, className, style, expandable, rowClassName, onHeaderRow, sticky, ...rest }: TableProps<T>) => react_jsx_runtime.JSX.Element;
262
+ declare const Table: <T extends Record<string, any> = any>({ columns, dataSource, rowKey, rowSelection, pagination, size, bordered, loading, locale, showHeader, title, footer, summary, scroll, tableLayout, onChange, onSorterChange, onPaginationChange, onRow, className, innerClassName, style, expandable, rowClassName, onHeaderRow, sticky, ...rest }: TableProps<T>) => react_jsx_runtime.JSX.Element;
262
263
 
263
264
  interface PaginationProps {
264
265
  current?: number;