Skip to content

Commit

Permalink
[28] Add missing return types to rowClass and rowStyle props + Bump v…
Browse files Browse the repository at this point in the history
…ersion (#29)

Add missing return types to rowClass and rowStyle props + Bump version
  • Loading branch information
AAndonio authored May 21, 2024
1 parent ef1d7d7 commit cd54486
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@skillbill/vuelace-3",
"version": "1.1.0",
"version": "1.1.1",
"private": false,
"author": "skillbill",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions src/components/VLDataTableCrud/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ export interface VLDataTableCrudProps {
lazy?: boolean
defaultRows?: number
rowsPerPageOptions?: number[]
rowClass?: (data: any) => object | undefined
rowStyle?: (data: any) => object | undefined
rowClass?: (data: any) => object | (string | object)[] | undefined
rowStyle?: (data: any) => object | (string | object)[] | undefined
totalRecords?: number
paginator?: boolean
paginatorPosition?: 'both' | 'top' | 'bottom'
Expand Down

0 comments on commit cd54486

Please sign in to comment.