@rendley/sdk - v1.15.19
    Preparing search index...

    Interface ClipBoundingCapabilities

    What a resize gesture means for a clip, per axis/handle kind. Hosts use this to decide which handles to render and what cursor/behavior they imply — instead of hardcoding clip-type checks.

    The values are the "auto" resolution of BoundsResizeOptions.mode: e.g. a horizontal side-drag on a video means crop, on a text clip means word-wrap width, on a shape means scale.

    interface ClipBoundingCapabilities {
        cornerResize: "none" | "scale" | "uniform-scale";
        horizontalResize: "none" | "scale" | "crop" | "wrap";
        movable: boolean;
        rotatable: boolean;
        verticalResize: "none" | "scale" | "crop";
    }
    Index

    Properties

    cornerResize: "none" | "scale" | "uniform-scale"
    horizontalResize: "none" | "scale" | "crop" | "wrap"
    movable: boolean
    rotatable: boolean
    verticalResize: "none" | "scale" | "crop"