|
|
@ -72,6 +72,15 @@ export interface CanvasConfig { |
|
|
*/ |
|
|
*/ |
|
|
allowExternalDrop?: boolean; |
|
|
allowExternalDrop?: boolean; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* Disable the rendering of built-in canvas spots. |
|
|
|
|
|
* @example |
|
|
|
|
|
* // Disable only the hover type spot
|
|
|
|
|
|
* customSpots: { hover: true }, |
|
|
|
|
|
* |
|
|
|
|
|
* // Disable all built-in spots
|
|
|
|
|
|
* customSpots: true, |
|
|
|
|
|
*/ |
|
|
customSpots?: boolean | Partial<Record<CanvasSpotBuiltInTypes, boolean>>; |
|
|
customSpots?: boolean | Partial<Record<CanvasSpotBuiltInTypes, boolean>>; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
|