tsv2-library 1.0.61-alpha.98 → 1.0.61-alpha.99
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/src/components/v2/DataTable/DataTable.vue.d.ts +5 -0
- package/dist/src/components/v2/DisposalReport/DisposalReportTable.vue.d.ts +8 -0
- package/dist/tsv2-library.es.js +5 -2
- package/dist/tsv2-library.umd.js +1 -1
- package/package.json +1 -1
- package/src/components/v2/DataTable/DataTable.vue.d.ts +5 -0
package/package.json
CHANGED
|
@@ -463,6 +463,11 @@ export interface TSDataTableProps {
|
|
|
463
463
|
* Total disabled rows in table (used for synchronizing with bulk action button)
|
|
464
464
|
*/
|
|
465
465
|
totalDisabledRows?: number;
|
|
466
|
+
/**
|
|
467
|
+
* A function that takes the row data as a parameter and returns a string to apply a particular class for the row.
|
|
468
|
+
* The return value is added to the row's :classes array (see Vue.js class bindings).
|
|
469
|
+
*/
|
|
470
|
+
rowClass?: (data: any) => string | object | undefined;
|
|
466
471
|
}
|
|
467
472
|
|
|
468
473
|
export type TSDataTableEmits = {
|