Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/five-doodles-relate.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@genseki/react': patch
---

[[Fix] Fix component props type not showing.](https://github.com/softnetics/genseki/issues/189)
4 changes: 2 additions & 2 deletions packages/react/src/react/views/collections/list/context.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { CollectionListTableContainer, type CollectionListTableContainerProps }
import { useCollectionDeleteMutation } from './hooks/use-collection-delete'
import { useCollectionListQuery } from './hooks/use-collection-list'
import { CollectionListTable, type CollectionListTableProps } from './table'
import { CollectionListPagination } from './table/pagination'
import { CollectionListPagination, type CollectionListPaginationProps } from './table/pagination'
import { CollectionListToolbar, type CollectionListToolbarProps } from './toolbar'

import { toast } from '../../../..'
Expand All @@ -24,7 +24,7 @@ interface CollectionListComponents<T extends BaseData = BaseData> {
ListTableContainer: React.FC<CollectionListTableContainerProps>
ListTableToolbar: React.FC<CollectionListToolbarProps>
ListTable: (props: CollectionListTableProps<T>) => ReactNode
ListTablePagination: React.FC
ListTablePagination: React.FC<CollectionListPaginationProps>
}

export interface CollectionListContextValue<T extends BaseData = BaseData> {
Expand Down
Loading