Merge pull request #24630 from Christian2000/react-beautiful-dnd-wrong-type-z-Index

Changed react-beautiful-dnd ZIndex type to React.CSSProperties['z-Ind…
This commit is contained in:
Paul van Brenk
2018-04-03 11:25:24 -07:00
committed by GitHub

View File

@@ -12,7 +12,7 @@ export type Id = string;
export type DraggableId = Id;
export type DroppableId = Id;
export type TypeId = Id;
export type ZIndex = number | string;
export type ZIndex = React.CSSProperties['zIndex'];
export type DropReason = 'DROP' | 'CANCEL';
export type Announce = (message: string) => void;