Skip to content

Commit

Permalink
fix: remove a div attribute type from TreeTable's prop type
Browse files Browse the repository at this point in the history
  • Loading branch information
박준서 authored and 박준서 committed Sep 28, 2024
1 parent 92de1eb commit fa157d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/lib/treetable/treetable.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -577,10 +577,10 @@ interface TreeTableColReorderEvent {
}

/**
* Defines valid properties in TreeTable component. In addition to these, all properties of HTMLDivElement can be used in this component.
* Defines valid properties in TreeTable component.
* @group Properties
*/
export interface TreeTableProps extends Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLDivElement>, HTMLDivElement>, 'onContextMenu' | 'onSelect' | 'ref' | 'value'> {
export interface TreeTableProps {
/**
* Whether to show it even there is only one page.
* @defaultValue true
Expand Down

0 comments on commit fa157d2

Please sign in to comment.