@fieldnotes/core 0.54.0 → 0.55.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.
- package/dist/index.cjs +305 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +145 -3
- package/dist/index.d.ts +145 -3
- package/dist/index.js +300 -5
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -249,7 +249,7 @@ interface Tool {
|
|
|
249
249
|
setOptions?(options: object): void;
|
|
250
250
|
onOptionsChange?(listener: () => void): () => void;
|
|
251
251
|
}
|
|
252
|
-
type ToolName = 'hand' | 'select' | 'pencil' | 'eraser' | 'arrow' | 'note' | 'image' | 'text' | 'shape' | 'measure' | 'template' | 'laser';
|
|
252
|
+
type ToolName = 'hand' | 'select' | 'pencil' | 'eraser' | 'arrow' | 'note' | 'image' | 'text' | 'shape' | 'measure' | 'template' | 'laser' | 'ping';
|
|
253
253
|
|
|
254
254
|
declare function snapPoint(point: Point, gridSize: number): Point;
|
|
255
255
|
declare function snapToHexCenter(point: Point, cellSize: number, orientation: HexOrientation): Point;
|
|
@@ -844,6 +844,148 @@ declare class RemoteLaserOverlay {
|
|
|
844
844
|
private renderTrails;
|
|
845
845
|
}
|
|
846
846
|
|
|
847
|
+
interface PingToolOptions {
|
|
848
|
+
name?: string;
|
|
849
|
+
color?: string;
|
|
850
|
+
/** Total pulse animation length in milliseconds. */
|
|
851
|
+
durationMs?: number;
|
|
852
|
+
/** Maximum ripple radius in world units. */
|
|
853
|
+
radius?: number;
|
|
854
|
+
/**
|
|
855
|
+
* Minimum interval between emitted pings. Taps arriving faster are ignored
|
|
856
|
+
* entirely (no local pulse, no emission), so rapid-fire pings cannot starve
|
|
857
|
+
* durable sync traffic.
|
|
858
|
+
*/
|
|
859
|
+
minIntervalMs?: number;
|
|
860
|
+
}
|
|
861
|
+
/**
|
|
862
|
+
* One emitted ping — the outgoing side of a shared "look here" marker.
|
|
863
|
+
* Emissions carry the world position and the tool's current style so a host
|
|
864
|
+
* can forward them as ephemeral presence without duplicating input handling.
|
|
865
|
+
*/
|
|
866
|
+
interface PingEmission {
|
|
867
|
+
/** World-space ping position. */
|
|
868
|
+
readonly x: number;
|
|
869
|
+
readonly y: number;
|
|
870
|
+
readonly color: string;
|
|
871
|
+
readonly durationMs: number;
|
|
872
|
+
readonly radius: number;
|
|
873
|
+
}
|
|
874
|
+
/**
|
|
875
|
+
* Tap or click to ping a world position: a short expanding-pulse animation is
|
|
876
|
+
* rendered locally and one `PingEmission` is delivered to `onPing` listeners
|
|
877
|
+
* per accepted tap. Pings are ephemeral by contract: they never create
|
|
878
|
+
* elements, enter undo history, or touch persisted canvas state — hosts
|
|
879
|
+
* forward emissions as presence only.
|
|
880
|
+
*/
|
|
881
|
+
declare class PingTool implements Tool {
|
|
882
|
+
readonly name: string;
|
|
883
|
+
private color;
|
|
884
|
+
private durationMs;
|
|
885
|
+
private radius;
|
|
886
|
+
private minIntervalMs;
|
|
887
|
+
private pings;
|
|
888
|
+
private lastEmitAt;
|
|
889
|
+
private rafId;
|
|
890
|
+
private optionListeners;
|
|
891
|
+
private pingListeners;
|
|
892
|
+
constructor(options?: PingToolOptions);
|
|
893
|
+
private now;
|
|
894
|
+
onActivate(ctx: ToolContext): void;
|
|
895
|
+
onDeactivate(ctx: ToolContext): void;
|
|
896
|
+
getOptions(): PingToolOptions;
|
|
897
|
+
setOptions(options: PingToolOptions): void;
|
|
898
|
+
onOptionsChange(listener: () => void): () => void;
|
|
899
|
+
/**
|
|
900
|
+
* Subscribes to accepted pings. Listeners must not throw; a throwing
|
|
901
|
+
* listener is isolated so it cannot break the tap handling or other
|
|
902
|
+
* listeners.
|
|
903
|
+
*/
|
|
904
|
+
onPing(listener: (emission: PingEmission) => void): () => void;
|
|
905
|
+
onPointerDown(state: PointerState, ctx: ToolContext): void;
|
|
906
|
+
onPointerMove(_state: PointerState, _ctx: ToolContext): void;
|
|
907
|
+
onPointerUp(_state: PointerState, _ctx: ToolContext): void;
|
|
908
|
+
renderOverlay(ctx: CanvasRenderingContext2D): void;
|
|
909
|
+
private ensureAnimating;
|
|
910
|
+
private tick;
|
|
911
|
+
private notifyOptionsChange;
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
/**
|
|
915
|
+
* The wire shape of a map-ping presence payload. Presence data is untyped on
|
|
916
|
+
* the wire, so hosts discriminate on `kind`; `isPingPresence` validates a
|
|
917
|
+
* received payload before it reaches the overlay. Pings are ephemeral by
|
|
918
|
+
* contract: they must travel as presence only — never as elements, undo
|
|
919
|
+
* history, persisted canvas state, or durable operations.
|
|
920
|
+
*/
|
|
921
|
+
interface PingPresence {
|
|
922
|
+
readonly kind: 'ping';
|
|
923
|
+
/** World-space ping position. */
|
|
924
|
+
readonly x: number;
|
|
925
|
+
readonly y: number;
|
|
926
|
+
readonly color?: string;
|
|
927
|
+
readonly durationMs?: number;
|
|
928
|
+
readonly radius?: number;
|
|
929
|
+
}
|
|
930
|
+
declare const PING_PRESENCE_KIND = "ping";
|
|
931
|
+
declare function isPingPresence(data: unknown): data is PingPresence;
|
|
932
|
+
/** Builds the presence payload for one local `PingTool` emission. */
|
|
933
|
+
declare function toPingPresence(emission: PingEmission): PingPresence;
|
|
934
|
+
/**
|
|
935
|
+
* The two viewport capabilities the overlay needs; `Viewport` satisfies it.
|
|
936
|
+
*/
|
|
937
|
+
interface RemotePingOverlayHost {
|
|
938
|
+
registerOverlay(draw: OverlayRenderer): () => void;
|
|
939
|
+
requestRender(): void;
|
|
940
|
+
}
|
|
941
|
+
interface RemotePingOverlayOptions {
|
|
942
|
+
/** Style fallbacks when a payload omits them. */
|
|
943
|
+
color?: string;
|
|
944
|
+
durationMs?: number;
|
|
945
|
+
radius?: number;
|
|
946
|
+
/** Per-sender live-ping cap; oldest pings drop first. Default `8`. */
|
|
947
|
+
maxPingsPerSender?: number;
|
|
948
|
+
}
|
|
949
|
+
/**
|
|
950
|
+
* Renders expanding-pulse pings for remote senders through the viewport
|
|
951
|
+
* overlay registration, independent of the viewer's active tool. Pings are
|
|
952
|
+
* stamped with local receive time (remote clocks are never trusted),
|
|
953
|
+
* self-expire when their animation ends, and a sender's pings disappear
|
|
954
|
+
* immediately on `remove()` — wire that to `presence-leave`/disconnect. The
|
|
955
|
+
* controller never touches elements, history, or persisted state, and it
|
|
956
|
+
* never moves the viewer's camera: pings are visual only.
|
|
957
|
+
*/
|
|
958
|
+
declare class RemotePingOverlay {
|
|
959
|
+
private readonly host;
|
|
960
|
+
private readonly color;
|
|
961
|
+
private readonly durationMs;
|
|
962
|
+
private readonly radius;
|
|
963
|
+
private readonly maxPingsPerSender;
|
|
964
|
+
private readonly pings;
|
|
965
|
+
private unregister;
|
|
966
|
+
private rafId;
|
|
967
|
+
private disposed;
|
|
968
|
+
constructor(host: RemotePingOverlayHost, options?: RemotePingOverlayOptions);
|
|
969
|
+
private now;
|
|
970
|
+
/**
|
|
971
|
+
* Applies a presence payload from `sender` (any opaque per-sender key, e.g.
|
|
972
|
+
* the envelope `from`). Non-ping or malformed payloads are ignored and
|
|
973
|
+
* reported as `false`, so hosts can feed every presence frame through.
|
|
974
|
+
*/
|
|
975
|
+
apply(sender: string, data: unknown): boolean;
|
|
976
|
+
/** Removes a sender's pings immediately (presence-leave/disconnect). */
|
|
977
|
+
remove(sender: string): void;
|
|
978
|
+
/** Removes every ping immediately. */
|
|
979
|
+
clear(): void;
|
|
980
|
+
/** Number of senders with a live (unexpired) ping. */
|
|
981
|
+
get activeSenderCount(): number;
|
|
982
|
+
/** Unregisters the overlay and stops the animation loop. Idempotent. */
|
|
983
|
+
dispose(): void;
|
|
984
|
+
private ensureAnimating;
|
|
985
|
+
private tick;
|
|
986
|
+
private renderPings;
|
|
987
|
+
}
|
|
988
|
+
|
|
847
989
|
interface ActiveFormats {
|
|
848
990
|
bold: boolean;
|
|
849
991
|
italic: boolean;
|
|
@@ -1282,6 +1424,6 @@ declare class TemplateTool implements Tool {
|
|
|
1282
1424
|
private notifyOptionsChange;
|
|
1283
1425
|
}
|
|
1284
1426
|
|
|
1285
|
-
declare const VERSION = "0.
|
|
1427
|
+
declare const VERSION = "0.55.0";
|
|
1286
1428
|
|
|
1287
|
-
export { type ActiveFormats, type AlignEdge, type ArrowElement, type ArrowStrokeStyle, ArrowTool, type ArrowToolOptions, AutoSave, type AutoSaveOptions, type BackgroundOptions, type BackgroundPattern, type Binding, type Bounds, Camera, type CameraChangeInfo, type CameraOptions, type CanvasElement, type CanvasState, type Command, DEFAULT_NOTE_FONT_SIZE, type DistributeAxis, type ElementChangeMeta, ElementStore, type ElementStyle, type ElementType, type ElementUpdateEvent, EraserTool, type EraserToolOptions, type ExportAssetError, type ExportAssetErrorReason, type ExportImageOptions, type ExportResourceOptions, type ExportSvgOptions, type FontSizePreset, type GridElement, type GridInfo, HandTool, type HexOrientation, HistoryStack, type HistoryStackOptions, type HtmlElement, type HtmlExportError, type HtmlExportErrorReason, type HtmlExportOptions, type HtmlExportRenderer, type ImageElement, ImageTool, type ImageToolOptions, IndexedDBAdapter, type IndexedDBAdapterOptions, LASER_TRAIL_PRESENCE_KIND, LaserTool, type LaserToolOptions, type LaserTrailEmission, type LaserTrailPresence, type Layer, LayerManager, LocalStorageAdapter, MeasureTool, type MeasureToolOptions, type Measurement, MemoryAdapter, type NoteElement, NoteTool, type NoteToolOptions, type OverlayRenderer, PencilTool, type PencilToolOptions, type Point, type PointerState, RemoteLaserOverlay, type RemoteLaserOverlayHost, type RemoteLaserOverlayOptions, type RenderStatsSnapshot, type RotateDirection, SelectTool, type ShapeElement, type ShapeKind, ShapeTool, type ShapeToolOptions, type ShortcutBindings, type ShortcutOptions, type ShortcutsApi, type Size, type StorageAdapter, type StrokeElement, type StrokePoint, type TemplateElement, type TemplateRenderStyle, type TemplateShape, TemplateTool, type TemplateToolOptions, type TextElement, TextTool, type TextToolOptions, type Tool, type ToolContext, ToolManager, type ToolName, VERSION, Viewport, type ViewportOptions, boundsIntersect, createArrow, createGrid, createHtmlElement, createImage, createNote, createShape, createStroke, createTemplate, createText, drawHexPath, exportImage, exportSvg, getActiveFormats, getArrowBounds, getArrowControlPoint, getArrowMidpoint, getArrowTangentAngle, getBendFromPoint, getElementBounds, getElementStyle, getElementsBoundingBox, getHexCellsInCone, getHexCellsInLine, getHexCellsInRadius, getHexCellsInRectangle, getHexCellsInSquare, getHexDistance, isLaserTrailPresence, isNearBezier, setFontSize, smartSnap, snapPoint, snapToHexCenter, styleToPatch, toLaserTrailPresence, toggleBold, toggleItalic, toggleStrikethrough, toggleUnderline };
|
|
1429
|
+
export { type ActiveFormats, type AlignEdge, type ArrowElement, type ArrowStrokeStyle, ArrowTool, type ArrowToolOptions, AutoSave, type AutoSaveOptions, type BackgroundOptions, type BackgroundPattern, type Binding, type Bounds, Camera, type CameraChangeInfo, type CameraOptions, type CanvasElement, type CanvasState, type Command, DEFAULT_NOTE_FONT_SIZE, type DistributeAxis, type ElementChangeMeta, ElementStore, type ElementStyle, type ElementType, type ElementUpdateEvent, EraserTool, type EraserToolOptions, type ExportAssetError, type ExportAssetErrorReason, type ExportImageOptions, type ExportResourceOptions, type ExportSvgOptions, type FontSizePreset, type GridElement, type GridInfo, HandTool, type HexOrientation, HistoryStack, type HistoryStackOptions, type HtmlElement, type HtmlExportError, type HtmlExportErrorReason, type HtmlExportOptions, type HtmlExportRenderer, type ImageElement, ImageTool, type ImageToolOptions, IndexedDBAdapter, type IndexedDBAdapterOptions, LASER_TRAIL_PRESENCE_KIND, LaserTool, type LaserToolOptions, type LaserTrailEmission, type LaserTrailPresence, type Layer, LayerManager, LocalStorageAdapter, MeasureTool, type MeasureToolOptions, type Measurement, MemoryAdapter, type NoteElement, NoteTool, type NoteToolOptions, type OverlayRenderer, PING_PRESENCE_KIND, PencilTool, type PencilToolOptions, type PingEmission, type PingPresence, PingTool, type PingToolOptions, type Point, type PointerState, RemoteLaserOverlay, type RemoteLaserOverlayHost, type RemoteLaserOverlayOptions, RemotePingOverlay, type RemotePingOverlayHost, type RemotePingOverlayOptions, type RenderStatsSnapshot, type RotateDirection, SelectTool, type ShapeElement, type ShapeKind, ShapeTool, type ShapeToolOptions, type ShortcutBindings, type ShortcutOptions, type ShortcutsApi, type Size, type StorageAdapter, type StrokeElement, type StrokePoint, type TemplateElement, type TemplateRenderStyle, type TemplateShape, TemplateTool, type TemplateToolOptions, type TextElement, TextTool, type TextToolOptions, type Tool, type ToolContext, ToolManager, type ToolName, VERSION, Viewport, type ViewportOptions, boundsIntersect, createArrow, createGrid, createHtmlElement, createImage, createNote, createShape, createStroke, createTemplate, createText, drawHexPath, exportImage, exportSvg, getActiveFormats, getArrowBounds, getArrowControlPoint, getArrowMidpoint, getArrowTangentAngle, getBendFromPoint, getElementBounds, getElementStyle, getElementsBoundingBox, getHexCellsInCone, getHexCellsInLine, getHexCellsInRadius, getHexCellsInRectangle, getHexCellsInSquare, getHexDistance, isLaserTrailPresence, isNearBezier, isPingPresence, setFontSize, smartSnap, snapPoint, snapToHexCenter, styleToPatch, toLaserTrailPresence, toPingPresence, toggleBold, toggleItalic, toggleStrikethrough, toggleUnderline };
|
package/dist/index.d.ts
CHANGED
|
@@ -249,7 +249,7 @@ interface Tool {
|
|
|
249
249
|
setOptions?(options: object): void;
|
|
250
250
|
onOptionsChange?(listener: () => void): () => void;
|
|
251
251
|
}
|
|
252
|
-
type ToolName = 'hand' | 'select' | 'pencil' | 'eraser' | 'arrow' | 'note' | 'image' | 'text' | 'shape' | 'measure' | 'template' | 'laser';
|
|
252
|
+
type ToolName = 'hand' | 'select' | 'pencil' | 'eraser' | 'arrow' | 'note' | 'image' | 'text' | 'shape' | 'measure' | 'template' | 'laser' | 'ping';
|
|
253
253
|
|
|
254
254
|
declare function snapPoint(point: Point, gridSize: number): Point;
|
|
255
255
|
declare function snapToHexCenter(point: Point, cellSize: number, orientation: HexOrientation): Point;
|
|
@@ -844,6 +844,148 @@ declare class RemoteLaserOverlay {
|
|
|
844
844
|
private renderTrails;
|
|
845
845
|
}
|
|
846
846
|
|
|
847
|
+
interface PingToolOptions {
|
|
848
|
+
name?: string;
|
|
849
|
+
color?: string;
|
|
850
|
+
/** Total pulse animation length in milliseconds. */
|
|
851
|
+
durationMs?: number;
|
|
852
|
+
/** Maximum ripple radius in world units. */
|
|
853
|
+
radius?: number;
|
|
854
|
+
/**
|
|
855
|
+
* Minimum interval between emitted pings. Taps arriving faster are ignored
|
|
856
|
+
* entirely (no local pulse, no emission), so rapid-fire pings cannot starve
|
|
857
|
+
* durable sync traffic.
|
|
858
|
+
*/
|
|
859
|
+
minIntervalMs?: number;
|
|
860
|
+
}
|
|
861
|
+
/**
|
|
862
|
+
* One emitted ping — the outgoing side of a shared "look here" marker.
|
|
863
|
+
* Emissions carry the world position and the tool's current style so a host
|
|
864
|
+
* can forward them as ephemeral presence without duplicating input handling.
|
|
865
|
+
*/
|
|
866
|
+
interface PingEmission {
|
|
867
|
+
/** World-space ping position. */
|
|
868
|
+
readonly x: number;
|
|
869
|
+
readonly y: number;
|
|
870
|
+
readonly color: string;
|
|
871
|
+
readonly durationMs: number;
|
|
872
|
+
readonly radius: number;
|
|
873
|
+
}
|
|
874
|
+
/**
|
|
875
|
+
* Tap or click to ping a world position: a short expanding-pulse animation is
|
|
876
|
+
* rendered locally and one `PingEmission` is delivered to `onPing` listeners
|
|
877
|
+
* per accepted tap. Pings are ephemeral by contract: they never create
|
|
878
|
+
* elements, enter undo history, or touch persisted canvas state — hosts
|
|
879
|
+
* forward emissions as presence only.
|
|
880
|
+
*/
|
|
881
|
+
declare class PingTool implements Tool {
|
|
882
|
+
readonly name: string;
|
|
883
|
+
private color;
|
|
884
|
+
private durationMs;
|
|
885
|
+
private radius;
|
|
886
|
+
private minIntervalMs;
|
|
887
|
+
private pings;
|
|
888
|
+
private lastEmitAt;
|
|
889
|
+
private rafId;
|
|
890
|
+
private optionListeners;
|
|
891
|
+
private pingListeners;
|
|
892
|
+
constructor(options?: PingToolOptions);
|
|
893
|
+
private now;
|
|
894
|
+
onActivate(ctx: ToolContext): void;
|
|
895
|
+
onDeactivate(ctx: ToolContext): void;
|
|
896
|
+
getOptions(): PingToolOptions;
|
|
897
|
+
setOptions(options: PingToolOptions): void;
|
|
898
|
+
onOptionsChange(listener: () => void): () => void;
|
|
899
|
+
/**
|
|
900
|
+
* Subscribes to accepted pings. Listeners must not throw; a throwing
|
|
901
|
+
* listener is isolated so it cannot break the tap handling or other
|
|
902
|
+
* listeners.
|
|
903
|
+
*/
|
|
904
|
+
onPing(listener: (emission: PingEmission) => void): () => void;
|
|
905
|
+
onPointerDown(state: PointerState, ctx: ToolContext): void;
|
|
906
|
+
onPointerMove(_state: PointerState, _ctx: ToolContext): void;
|
|
907
|
+
onPointerUp(_state: PointerState, _ctx: ToolContext): void;
|
|
908
|
+
renderOverlay(ctx: CanvasRenderingContext2D): void;
|
|
909
|
+
private ensureAnimating;
|
|
910
|
+
private tick;
|
|
911
|
+
private notifyOptionsChange;
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
/**
|
|
915
|
+
* The wire shape of a map-ping presence payload. Presence data is untyped on
|
|
916
|
+
* the wire, so hosts discriminate on `kind`; `isPingPresence` validates a
|
|
917
|
+
* received payload before it reaches the overlay. Pings are ephemeral by
|
|
918
|
+
* contract: they must travel as presence only — never as elements, undo
|
|
919
|
+
* history, persisted canvas state, or durable operations.
|
|
920
|
+
*/
|
|
921
|
+
interface PingPresence {
|
|
922
|
+
readonly kind: 'ping';
|
|
923
|
+
/** World-space ping position. */
|
|
924
|
+
readonly x: number;
|
|
925
|
+
readonly y: number;
|
|
926
|
+
readonly color?: string;
|
|
927
|
+
readonly durationMs?: number;
|
|
928
|
+
readonly radius?: number;
|
|
929
|
+
}
|
|
930
|
+
declare const PING_PRESENCE_KIND = "ping";
|
|
931
|
+
declare function isPingPresence(data: unknown): data is PingPresence;
|
|
932
|
+
/** Builds the presence payload for one local `PingTool` emission. */
|
|
933
|
+
declare function toPingPresence(emission: PingEmission): PingPresence;
|
|
934
|
+
/**
|
|
935
|
+
* The two viewport capabilities the overlay needs; `Viewport` satisfies it.
|
|
936
|
+
*/
|
|
937
|
+
interface RemotePingOverlayHost {
|
|
938
|
+
registerOverlay(draw: OverlayRenderer): () => void;
|
|
939
|
+
requestRender(): void;
|
|
940
|
+
}
|
|
941
|
+
interface RemotePingOverlayOptions {
|
|
942
|
+
/** Style fallbacks when a payload omits them. */
|
|
943
|
+
color?: string;
|
|
944
|
+
durationMs?: number;
|
|
945
|
+
radius?: number;
|
|
946
|
+
/** Per-sender live-ping cap; oldest pings drop first. Default `8`. */
|
|
947
|
+
maxPingsPerSender?: number;
|
|
948
|
+
}
|
|
949
|
+
/**
|
|
950
|
+
* Renders expanding-pulse pings for remote senders through the viewport
|
|
951
|
+
* overlay registration, independent of the viewer's active tool. Pings are
|
|
952
|
+
* stamped with local receive time (remote clocks are never trusted),
|
|
953
|
+
* self-expire when their animation ends, and a sender's pings disappear
|
|
954
|
+
* immediately on `remove()` — wire that to `presence-leave`/disconnect. The
|
|
955
|
+
* controller never touches elements, history, or persisted state, and it
|
|
956
|
+
* never moves the viewer's camera: pings are visual only.
|
|
957
|
+
*/
|
|
958
|
+
declare class RemotePingOverlay {
|
|
959
|
+
private readonly host;
|
|
960
|
+
private readonly color;
|
|
961
|
+
private readonly durationMs;
|
|
962
|
+
private readonly radius;
|
|
963
|
+
private readonly maxPingsPerSender;
|
|
964
|
+
private readonly pings;
|
|
965
|
+
private unregister;
|
|
966
|
+
private rafId;
|
|
967
|
+
private disposed;
|
|
968
|
+
constructor(host: RemotePingOverlayHost, options?: RemotePingOverlayOptions);
|
|
969
|
+
private now;
|
|
970
|
+
/**
|
|
971
|
+
* Applies a presence payload from `sender` (any opaque per-sender key, e.g.
|
|
972
|
+
* the envelope `from`). Non-ping or malformed payloads are ignored and
|
|
973
|
+
* reported as `false`, so hosts can feed every presence frame through.
|
|
974
|
+
*/
|
|
975
|
+
apply(sender: string, data: unknown): boolean;
|
|
976
|
+
/** Removes a sender's pings immediately (presence-leave/disconnect). */
|
|
977
|
+
remove(sender: string): void;
|
|
978
|
+
/** Removes every ping immediately. */
|
|
979
|
+
clear(): void;
|
|
980
|
+
/** Number of senders with a live (unexpired) ping. */
|
|
981
|
+
get activeSenderCount(): number;
|
|
982
|
+
/** Unregisters the overlay and stops the animation loop. Idempotent. */
|
|
983
|
+
dispose(): void;
|
|
984
|
+
private ensureAnimating;
|
|
985
|
+
private tick;
|
|
986
|
+
private renderPings;
|
|
987
|
+
}
|
|
988
|
+
|
|
847
989
|
interface ActiveFormats {
|
|
848
990
|
bold: boolean;
|
|
849
991
|
italic: boolean;
|
|
@@ -1282,6 +1424,6 @@ declare class TemplateTool implements Tool {
|
|
|
1282
1424
|
private notifyOptionsChange;
|
|
1283
1425
|
}
|
|
1284
1426
|
|
|
1285
|
-
declare const VERSION = "0.
|
|
1427
|
+
declare const VERSION = "0.55.0";
|
|
1286
1428
|
|
|
1287
|
-
export { type ActiveFormats, type AlignEdge, type ArrowElement, type ArrowStrokeStyle, ArrowTool, type ArrowToolOptions, AutoSave, type AutoSaveOptions, type BackgroundOptions, type BackgroundPattern, type Binding, type Bounds, Camera, type CameraChangeInfo, type CameraOptions, type CanvasElement, type CanvasState, type Command, DEFAULT_NOTE_FONT_SIZE, type DistributeAxis, type ElementChangeMeta, ElementStore, type ElementStyle, type ElementType, type ElementUpdateEvent, EraserTool, type EraserToolOptions, type ExportAssetError, type ExportAssetErrorReason, type ExportImageOptions, type ExportResourceOptions, type ExportSvgOptions, type FontSizePreset, type GridElement, type GridInfo, HandTool, type HexOrientation, HistoryStack, type HistoryStackOptions, type HtmlElement, type HtmlExportError, type HtmlExportErrorReason, type HtmlExportOptions, type HtmlExportRenderer, type ImageElement, ImageTool, type ImageToolOptions, IndexedDBAdapter, type IndexedDBAdapterOptions, LASER_TRAIL_PRESENCE_KIND, LaserTool, type LaserToolOptions, type LaserTrailEmission, type LaserTrailPresence, type Layer, LayerManager, LocalStorageAdapter, MeasureTool, type MeasureToolOptions, type Measurement, MemoryAdapter, type NoteElement, NoteTool, type NoteToolOptions, type OverlayRenderer, PencilTool, type PencilToolOptions, type Point, type PointerState, RemoteLaserOverlay, type RemoteLaserOverlayHost, type RemoteLaserOverlayOptions, type RenderStatsSnapshot, type RotateDirection, SelectTool, type ShapeElement, type ShapeKind, ShapeTool, type ShapeToolOptions, type ShortcutBindings, type ShortcutOptions, type ShortcutsApi, type Size, type StorageAdapter, type StrokeElement, type StrokePoint, type TemplateElement, type TemplateRenderStyle, type TemplateShape, TemplateTool, type TemplateToolOptions, type TextElement, TextTool, type TextToolOptions, type Tool, type ToolContext, ToolManager, type ToolName, VERSION, Viewport, type ViewportOptions, boundsIntersect, createArrow, createGrid, createHtmlElement, createImage, createNote, createShape, createStroke, createTemplate, createText, drawHexPath, exportImage, exportSvg, getActiveFormats, getArrowBounds, getArrowControlPoint, getArrowMidpoint, getArrowTangentAngle, getBendFromPoint, getElementBounds, getElementStyle, getElementsBoundingBox, getHexCellsInCone, getHexCellsInLine, getHexCellsInRadius, getHexCellsInRectangle, getHexCellsInSquare, getHexDistance, isLaserTrailPresence, isNearBezier, setFontSize, smartSnap, snapPoint, snapToHexCenter, styleToPatch, toLaserTrailPresence, toggleBold, toggleItalic, toggleStrikethrough, toggleUnderline };
|
|
1429
|
+
export { type ActiveFormats, type AlignEdge, type ArrowElement, type ArrowStrokeStyle, ArrowTool, type ArrowToolOptions, AutoSave, type AutoSaveOptions, type BackgroundOptions, type BackgroundPattern, type Binding, type Bounds, Camera, type CameraChangeInfo, type CameraOptions, type CanvasElement, type CanvasState, type Command, DEFAULT_NOTE_FONT_SIZE, type DistributeAxis, type ElementChangeMeta, ElementStore, type ElementStyle, type ElementType, type ElementUpdateEvent, EraserTool, type EraserToolOptions, type ExportAssetError, type ExportAssetErrorReason, type ExportImageOptions, type ExportResourceOptions, type ExportSvgOptions, type FontSizePreset, type GridElement, type GridInfo, HandTool, type HexOrientation, HistoryStack, type HistoryStackOptions, type HtmlElement, type HtmlExportError, type HtmlExportErrorReason, type HtmlExportOptions, type HtmlExportRenderer, type ImageElement, ImageTool, type ImageToolOptions, IndexedDBAdapter, type IndexedDBAdapterOptions, LASER_TRAIL_PRESENCE_KIND, LaserTool, type LaserToolOptions, type LaserTrailEmission, type LaserTrailPresence, type Layer, LayerManager, LocalStorageAdapter, MeasureTool, type MeasureToolOptions, type Measurement, MemoryAdapter, type NoteElement, NoteTool, type NoteToolOptions, type OverlayRenderer, PING_PRESENCE_KIND, PencilTool, type PencilToolOptions, type PingEmission, type PingPresence, PingTool, type PingToolOptions, type Point, type PointerState, RemoteLaserOverlay, type RemoteLaserOverlayHost, type RemoteLaserOverlayOptions, RemotePingOverlay, type RemotePingOverlayHost, type RemotePingOverlayOptions, type RenderStatsSnapshot, type RotateDirection, SelectTool, type ShapeElement, type ShapeKind, ShapeTool, type ShapeToolOptions, type ShortcutBindings, type ShortcutOptions, type ShortcutsApi, type Size, type StorageAdapter, type StrokeElement, type StrokePoint, type TemplateElement, type TemplateRenderStyle, type TemplateShape, TemplateTool, type TemplateToolOptions, type TextElement, TextTool, type TextToolOptions, type Tool, type ToolContext, ToolManager, type ToolName, VERSION, Viewport, type ViewportOptions, boundsIntersect, createArrow, createGrid, createHtmlElement, createImage, createNote, createShape, createStroke, createTemplate, createText, drawHexPath, exportImage, exportSvg, getActiveFormats, getArrowBounds, getArrowControlPoint, getArrowMidpoint, getArrowTangentAngle, getBendFromPoint, getElementBounds, getElementStyle, getElementsBoundingBox, getHexCellsInCone, getHexCellsInLine, getHexCellsInRadius, getHexCellsInRectangle, getHexCellsInSquare, getHexDistance, isLaserTrailPresence, isNearBezier, isPingPresence, setFontSize, smartSnap, snapPoint, snapToHexCenter, styleToPatch, toLaserTrailPresence, toPingPresence, toggleBold, toggleItalic, toggleStrikethrough, toggleUnderline };
|