@nimbus-ds/patterns 1.26.0 → 1.27.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
@@ -282,6 +282,11 @@ export interface DataTableProperties {
282
282
  * @TJS-type React.ReactNode
283
283
  */
284
284
  children: ReactNode;
285
+ /**
286
+ * Props passed to the container box element.
287
+ * @TJS-type BoxProps
288
+ */
289
+ containerProps?: BoxProps;
285
290
  }
286
291
  export type DataTableProps = DataTableProperties & TableProperties & HTMLAttributes<HTMLElement>;
287
292
  export declare const DataTable: React.FC<DataTableProps> & DataTableComponents;