@parasutcom/fds 0.1.23 → 0.1.24
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 +3 -1
- package/dist/index.js +1177 -1176
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -424,6 +424,8 @@ declare interface DataTableProps<TData> {
|
|
|
424
424
|
table: Table_2<TData>;
|
|
425
425
|
/** Child compound components */
|
|
426
426
|
children: ReactNode;
|
|
427
|
+
/** Additional className for the wrapper div */
|
|
428
|
+
className?: string;
|
|
427
429
|
}
|
|
428
430
|
|
|
429
431
|
/**
|
|
@@ -431,7 +433,7 @@ declare interface DataTableProps<TData> {
|
|
|
431
433
|
* Accepts a table instance and provides context for child components.
|
|
432
434
|
* All configuration happens in useDataTable(), not here.
|
|
433
435
|
*/
|
|
434
|
-
declare function DataTableRoot<TData>({ table, children }: DataTableProps<TData>): JSX.Element;
|
|
436
|
+
declare function DataTableRoot<TData>({ table, children, className }: DataTableProps<TData>): JSX.Element;
|
|
435
437
|
|
|
436
438
|
declare function DataTableRowCount<TData>({ count }?: DataTableRowCountProps): JSX.Element;
|
|
437
439
|
|