diff --git a/.changeset/five-doodles-relate.md b/.changeset/five-doodles-relate.md new file mode 100644 index 00000000..2fea29fe --- /dev/null +++ b/.changeset/five-doodles-relate.md @@ -0,0 +1,5 @@ +--- +'@genseki/react': patch +--- + +[[Fix] Fix component props type not showing.](https://github.com/softnetics/genseki/issues/189) diff --git a/packages/react/src/react/views/collections/list/context.tsx b/packages/react/src/react/views/collections/list/context.tsx index affea1ea..70ba2073 100644 --- a/packages/react/src/react/views/collections/list/context.tsx +++ b/packages/react/src/react/views/collections/list/context.tsx @@ -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 '../../../..' @@ -24,7 +24,7 @@ interface CollectionListComponents { ListTableContainer: React.FC ListTableToolbar: React.FC ListTable: (props: CollectionListTableProps) => ReactNode - ListTablePagination: React.FC + ListTablePagination: React.FC } export interface CollectionListContextValue {