terra-draw 1.28.7 → 1.29.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -60,6 +60,9 @@ type SelectionStyling = {
60
60
  };
61
61
  interface Cursors {
62
62
  pointerOver?: Cursor;
63
+ pointerOverFeature?: Cursor;
64
+ pointerOverCoordinate?: Cursor;
65
+ pointerOverResizeHandle?: Cursor;
63
66
  dragStart?: Cursor;
64
67
  dragEnd?: Cursor;
65
68
  insertMidpoint?: Cursor;
@@ -102,6 +105,9 @@ export declare class TerraDrawSelectMode extends TerraDrawBaseSelectMode<Selecti
102
105
  private lineSnap;
103
106
  private mutateFeature;
104
107
  private readFeature;
108
+ private getPointerOverFeatureCursor;
109
+ private getPointerOverCoordinateCursor;
110
+ private getPointerOverResizeHandleCursor;
105
111
  constructor(options?: TerraDrawSelectModeOptions<SelectionStyling>);
106
112
  updateOptions(options?: ModeUpdateOptions<TerraDrawSelectModeOptions<SelectionStyling>>): void;
107
113
  selectFeature(featureId: FeatureId): void;