@syook/react-tabulous 4.5.0-beta-0.2 → 4.5.0-beta-0.3

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/lib/index.d.ts CHANGED
@@ -296,8 +296,9 @@ interface DataGridPropsWithDefaultValues {
296
296
  * Callback fired when a bulk action is clicked.
297
297
  * @param {string} action The action clicked.
298
298
  * @param {GridRowId[]} selectedRows The selected rows.
299
+ * @param {() => void} resetSelectedRows Function to reset the selected rows.
299
300
  */
300
- onBulkActionClick: (action: string, selectedRows: GridRowId[]) => void;
301
+ onBulkActionClick: (action: string, selectedRows: GridRowId[], resetSelectedRows: () => void) => void;
301
302
  /**
302
303
  * The text to be displayed when the grid is empty.
303
304
  * @default 'No rows'