Skip to content

Commit

Permalink
rename: DragReorderableProps (#7009)
Browse files Browse the repository at this point in the history
  • Loading branch information
bvandercar-vt authored Oct 8, 2024
1 parent a6dd670 commit f4b4126
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/table/src/interactions/reorderable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export interface ReorderableProps {
selectedRegions?: Region[];
}

export interface DragReorderable extends ReorderableProps, DraggableChildrenProps {
export interface DragReorderableProps extends ReorderableProps, DraggableChildrenProps {
/**
* Whether the reordering behavior is disabled.
*
Expand Down Expand Up @@ -93,8 +93,8 @@ export interface DragReorderable extends ReorderableProps, DraggableChildrenProp
toRegion: (index1: number, index2?: number) => Region;
}

export class DragReorderable extends React.PureComponent<DragReorderable> {
public static defaultProps: Partial<DragReorderable> = {
export class DragReorderable extends React.PureComponent<DragReorderableProps> {
public static defaultProps: Partial<DragReorderableProps> = {
selectedRegions: [],
};

Expand Down

1 comment on commit f4b4126

@svc-palantir-github
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

rename: DragReorderableProps (#7009)

Build artifact links for this commit: documentation | landing | table | demo

This is an automated comment from the deploy-preview CircleCI job.

Please sign in to comment.