mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
remove unused types, readd onDoubleClick
Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
parent
aa1ca11631
commit
c26b4bacc2
@ -92,17 +92,6 @@ interface Props {
|
|||||||
onMinExtentExceed?: () => void;
|
onMinExtentExceed?: () => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
enum MovementTrigger {
|
|
||||||
EXCEED_MAX = "exceed",
|
|
||||||
SUBCEED_MIN = "subceed",
|
|
||||||
}
|
|
||||||
|
|
||||||
interface MovementCalc {
|
|
||||||
newExtent?: number;
|
|
||||||
otherTrigger?: MovementTrigger;
|
|
||||||
ignore?: boolean;
|
|
||||||
}
|
|
||||||
|
|
||||||
interface Position {
|
interface Position {
|
||||||
readonly pageX: number;
|
readonly pageX: number;
|
||||||
readonly pageY: number;
|
readonly pageY: number;
|
||||||
@ -281,11 +270,12 @@ export class ResizingAnchor extends React.PureComponent<Props> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const { disabled, direction, placement } = this.props
|
const { disabled, direction, placement, onDoubleClick } = this.props
|
||||||
return <div
|
return <div
|
||||||
ref={this.ref}
|
ref={this.ref}
|
||||||
className={cssNames("ResizingAnchor", direction, placement, { disabled })}
|
className={cssNames("ResizingAnchor", direction, placement, { disabled })}
|
||||||
onMouseDown={this.onDragInit}
|
onMouseDown={this.onDragInit}
|
||||||
|
onDoubleClick={onDoubleClick}
|
||||||
/>
|
/>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user