@atlaskit/pragmatic-drag-and-drop-react-beautiful-dnd-migration
Version:
An optional Pragmatic drag and drop package that enables rapid migration from react-beautiful-dnd to Pragmatic drag and drop
18 lines (17 loc) • 633 B
TypeScript
/**
* This is a vastly simplified version of the style marshal in `react-beautiful-dnd`.
*
* Most of the styles have been removed, as they are not required for native dragging.
* They were only required in `react-beautiful-dnd` because it emulated dragging.
*/
import type { ContextId } from 'react-beautiful-dnd';
/**
* Returns the rule string for drag handle styles.
*/
export declare function getDragHandleRuleString(contextId: ContextId): string;
type ContextIdAndNonce = {
contextId: ContextId;
nonce?: string;
};
export default function useStyleMarshal({ contextId, nonce }: ContextIdAndNonce): void;
export {};