| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- // single
- export const directions = ['top', 'right', 'bottom', 'left', 'topRight', 'bottomRight', 'bottomLeft', 'topLeft'] as const;
- export type Direction = 'top' | 'right' | 'bottom' | 'left' | 'topRight' | 'bottomRight' | 'bottomLeft' | 'topLeft';
- export interface HandleClassName {
- top?: string;
- right?: string;
- bottom?: string;
- left?: string;
- topRight?: string;
- bottomRight?: string;
- bottomLeft?: string;
- topLeft?: string
- }
- export type ResizeEventType = 'mouse' | 'touch';
- export type HandlerCallback = (
- e: MouseEvent,
- direction: Direction,
- type?: ResizeEventType,
- ) => void;
- export interface Enable {
- top?: boolean;
- right?: boolean;
- bottom?: boolean;
- left?: boolean;
- topRight?: boolean;
- bottomRight?: boolean;
- bottomLeft?: boolean;
- topLeft?: boolean
- }
- export interface Size {
- width?: string | number;
- height?: string | number
- }
- export interface NumberSize {
- width: number;
- height: number
- }
- export interface NewSize {
- newHeight: number | string;
- newWidth: number | string
- }
- export const DEFAULT_SIZE = {
- width: 'auto',
- height: 'auto',
- };
- export type ResizeCallback = (
- size: Size,
- event: MouseEvent | TouchEvent,
- direction: Direction,
- ) => void;
- export type ResizeStartCallback = (
- e: MouseEvent | Touch,
- dir: Direction,
- ) => void | boolean;
|