fix: add missing TableRowProps export (#2866)

* fix: add missing TableRowProps export

* feat(changeset): add changeset for PR2866

* chore(changeset): revise changeset message

---------

Co-authored-by: աɨռɢӄաօռɢ <wingkwong.code@gmail.com>
This commit is contained in:
Paul Tiedtke 2024-04-29 09:21:20 +02:00 committed by GitHub
parent 2a2a0692ca
commit 5f5ad7a1dd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 12 additions and 1 deletions

View File

@ -0,0 +1,5 @@
---
"@nextui-org/table": patch
---
Add missing export of `TableRowProps` type (#2584)

View File

@ -19,4 +19,10 @@ export {default as Table} from "./table";
// export base components
export {TableBody, TableCell, TableColumn, TableHeader, TableRow} from "./base";
export type {TableBodyProps, TableCellProps, TableColumnProps, TableHeaderProps} from "./base";
export type {
TableBodyProps,
TableCellProps,
TableColumnProps,
TableHeaderProps,
TableRowProps,
} from "./base";