@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/CHANGELOG.md +6 -0
- package/dist/CHANGELOG.md +6 -0
- package/dist/DataTable/index.d.ts +6 -1
- package/dist/DataTable/index.js +1 -1
- package/dist/components-props.json +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
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;
|