Skip to content

Commit

Permalink
fix(resizable): correct type for resizeCursors input to make all prop…
Browse files Browse the repository at this point in the history
…erties optional
  • Loading branch information
mattlewis92 committed Dec 11, 2022
1 parent 7d7d024 commit c973e74
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ export class ResizableDirective implements OnInit, OnDestroy {
/**
* The mouse cursors that will be set on the resize edges
*/
@Input() resizeCursors: ResizeCursors = DEFAULT_RESIZE_CURSORS;
@Input() resizeCursors: Partial<ResizeCursors> = DEFAULT_RESIZE_CURSORS;

/**
* Define the positioning of the ghost element (can be fixed or absolute)
Expand Down

0 comments on commit c973e74

Please sign in to comment.