zaravand-ui 4.3.2 → 4.4.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/components/Table/Table.interface.d.ts +10 -0
- package/dist/index.cjs +13 -13
- package/dist/index.css +1 -1
- package/dist/index.js +509 -492
- package/package.json +1 -1
|
@@ -179,6 +179,16 @@ export interface TableProps {
|
|
|
179
179
|
onCellSelectChange?: TableCellSelectChangeHandler;
|
|
180
180
|
getRowId?: TableRowIdResolver;
|
|
181
181
|
showNumberRow?: boolean;
|
|
182
|
+
/**
|
|
183
|
+
* Arbitrary content (any ReactNode) rendered in the table's toolbar area,
|
|
184
|
+
* available in both schema-driven and custom-children (`children`) usage.
|
|
185
|
+
* Always kept at the same height as the search input / action buttons.
|
|
186
|
+
* Placement depends on what else is in the toolbar:
|
|
187
|
+
* - search input present: rendered in its own row above the search/actions row.
|
|
188
|
+
* - no search input but action buttons present: rendered in the search input's slot.
|
|
189
|
+
* - neither search nor action buttons present: rendered alone, above the table.
|
|
190
|
+
*/
|
|
191
|
+
toolbarExtra?: React.ReactNode;
|
|
182
192
|
/**
|
|
183
193
|
* When true, renders a vertical border between columns.
|
|
184
194
|
*/
|