@inditextech/weave-sdk 0.54.1 → 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/sdk.cjs +40 -35
- package/dist/sdk.d.cts +165 -160
- package/dist/sdk.d.cts.map +1 -1
- package/dist/sdk.d.ts +165 -160
- package/dist/sdk.d.ts.map +1 -1
- package/dist/sdk.js +53 -46
- package/dist/sdk.js.map +1 -1
- package/package.json +2 -2
package/dist/sdk.d.ts
CHANGED
|
@@ -867,8 +867,6 @@ declare function resetScale(node: Konva.Node): void;
|
|
|
867
867
|
declare function clearContainerTargets(instance: Weave): void;
|
|
868
868
|
declare function containerOverCursor(instance: Weave, ignoreNodes: Konva.Node[], definedCursorPosition?: Vector2d): Konva.Node | undefined;
|
|
869
869
|
declare function moveNodeToContainer(instance: Weave, node: Konva.Node, containerToMove: Konva.Layer | Konva.Node, invalidOriginsTypes?: string[]): boolean;
|
|
870
|
-
declare function getContrastTextColor(hex: string): 'white' | 'black';
|
|
871
|
-
declare function stringToColor(str: string): string;
|
|
872
870
|
declare function getExportBoundingBox(stage: Konva.Stage, nodes: Konva.Node[]): {
|
|
873
871
|
x: number;
|
|
874
872
|
y: number;
|
|
@@ -901,6 +899,7 @@ declare function getClosestParentWithId(el: DOMElement): DOMElement;
|
|
|
901
899
|
declare function isInShadowDOM(el: DOMElement): boolean;
|
|
902
900
|
declare function getTopmostShadowHost(el: DOMElement): ShadowRoot | null;
|
|
903
901
|
declare function getVisibleNodes(instance: Weave, stage: Konva.Stage, nodeParent: Konva.Node, skipNodes: string[], referenceLayer: Konva.Layer | Konva.Group): konva_lib_Node5.Node<konva_lib_Node4.NodeConfig>[];
|
|
902
|
+
declare function memoize<T extends (...args: any[]) => any>(fn: T): T;
|
|
904
903
|
|
|
905
904
|
//#endregion
|
|
906
905
|
//#region src/nodes/stage/stage.d.ts
|
|
@@ -1733,8 +1732,163 @@ type WeaveBrushToolActionOnAddingEvent = undefined;
|
|
|
1733
1732
|
type WeaveBrushToolActionOnAddedEvent = undefined;
|
|
1734
1733
|
|
|
1735
1734
|
//#endregion
|
|
1736
|
-
//#region src/
|
|
1735
|
+
//#region src/plugins/stage-zoom/constants.d.ts
|
|
1736
|
+
//# sourceMappingURL=types.d.ts.map
|
|
1737
|
+
declare const WEAVE_STAGE_ZOOM_TYPE: {
|
|
1738
|
+
readonly MOUSE_WHEEL: "mouseWheel";
|
|
1739
|
+
readonly PINCH_ZOOM: "pinchZoom";
|
|
1740
|
+
};
|
|
1741
|
+
|
|
1742
|
+
//#endregion
|
|
1743
|
+
//#region src/plugins/stage-zoom/types.d.ts
|
|
1744
|
+
type WeaveStageZoomTypeKeys = keyof typeof WEAVE_STAGE_ZOOM_TYPE;
|
|
1745
|
+
type WeaveStageZoomType = (typeof WEAVE_STAGE_ZOOM_TYPE)[WeaveStageZoomTypeKeys];
|
|
1746
|
+
type WeaveStageZoomChanged = {
|
|
1747
|
+
scale: number;
|
|
1748
|
+
zoomSteps: number[];
|
|
1749
|
+
actualStep: number;
|
|
1750
|
+
onDefaultStep: boolean;
|
|
1751
|
+
canZoomIn: boolean;
|
|
1752
|
+
canZoomOut: boolean;
|
|
1753
|
+
};
|
|
1754
|
+
type WeaveStageZoomPluginOnZoomChangeEvent = WeaveStageZoomChanged;
|
|
1755
|
+
type WeaveStageZoomPluginConfig = {
|
|
1756
|
+
zoomSteps: number[];
|
|
1757
|
+
defaultZoom: number;
|
|
1758
|
+
fitToScreen: {
|
|
1759
|
+
padding: number;
|
|
1760
|
+
};
|
|
1761
|
+
fitToSelection: {
|
|
1762
|
+
padding: number;
|
|
1763
|
+
};
|
|
1764
|
+
zoomInertia: {
|
|
1765
|
+
friction: number;
|
|
1766
|
+
mouseWheelStep: number;
|
|
1767
|
+
trackpadStep: number;
|
|
1768
|
+
};
|
|
1769
|
+
};
|
|
1770
|
+
type WeaveStageZoomPluginParams = {
|
|
1771
|
+
config?: DeepPartial<WeaveStageZoomPluginConfig>;
|
|
1772
|
+
};
|
|
1773
|
+
|
|
1774
|
+
//#endregion
|
|
1775
|
+
//#region src/plugins/stage-grid/constants.d.ts
|
|
1776
|
+
//# sourceMappingURL=types.d.ts.map
|
|
1777
|
+
declare const WEAVE_STAGE_GRID_KEY = "stageGrid";
|
|
1778
|
+
declare const WEAVE_GRID_TYPES: {
|
|
1779
|
+
readonly LINES: "lines";
|
|
1780
|
+
readonly DOTS: "dots";
|
|
1781
|
+
};
|
|
1782
|
+
declare const WEAVE_GRID_DEFAULT_SIZE = 50;
|
|
1783
|
+
declare const WEAVE_GRID_DEFAULT_TYPE: string;
|
|
1784
|
+
declare const WEAVE_GRID_DEFAULT_COLOR = "rgba(0,0,0,0.1)";
|
|
1785
|
+
declare const WEAVE_GRID_DEFAULT_ORIGIN_COLOR = "rgba(255,0,0,0.1)";
|
|
1786
|
+
declare const WEAVE_GRID_DEFAULT_STROKE = 0.5;
|
|
1787
|
+
declare const WEAVE_GRID_DEFAULT_MAJOR_LINE_RATIO = 4;
|
|
1788
|
+
declare const WEAVE_GRID_DEFAULT_RADIUS = 1;
|
|
1789
|
+
declare const WEAVE_GRID_DEFAULT_MAJOR_DOT_RATIO = 2;
|
|
1790
|
+
declare const WEAVE_GRID_DEFAULT_MAJOR_EVERY = 10;
|
|
1791
|
+
declare const WEAVE_GRID_DEFAULT_DOT_MAX_DOTS_PER_AXIS = 250;
|
|
1792
|
+
declare const WEAVE_GRID_LAYER_ID = "gridLayer";
|
|
1793
|
+
|
|
1794
|
+
//#endregion
|
|
1795
|
+
//#region src/plugins/stage-grid/types.d.ts
|
|
1796
|
+
//# sourceMappingURL=constants.d.ts.map
|
|
1797
|
+
type WeaveStageGridPluginConfig = {
|
|
1798
|
+
type: WeaveStageGridType;
|
|
1799
|
+
gridColor: string;
|
|
1800
|
+
gridOriginColor: string;
|
|
1801
|
+
gridSize: number;
|
|
1802
|
+
gridMajorEvery?: number;
|
|
1803
|
+
gridMajorRatio?: number;
|
|
1804
|
+
gridStroke?: number;
|
|
1805
|
+
gridDotRadius?: number;
|
|
1806
|
+
gridDotMaxDotsPerAxis: number;
|
|
1807
|
+
};
|
|
1808
|
+
type WeaveStageGridPluginParams = {
|
|
1809
|
+
config?: Partial<WeaveStageGridPluginConfig>;
|
|
1810
|
+
};
|
|
1811
|
+
type WeaveStageGridTypeKeys = keyof typeof WEAVE_GRID_TYPES;
|
|
1812
|
+
type WeaveStageGridType = (typeof WEAVE_GRID_TYPES)[WeaveStageGridTypeKeys];
|
|
1813
|
+
|
|
1814
|
+
//#endregion
|
|
1815
|
+
//#region src/plugins/stage-grid/stage-grid.d.ts
|
|
1737
1816
|
//# sourceMappingURL=types.d.ts.map
|
|
1817
|
+
declare class WeaveStageGridPlugin extends WeavePlugin {
|
|
1818
|
+
private moveToolActive;
|
|
1819
|
+
private isMouseMiddleButtonPressed;
|
|
1820
|
+
private isSpaceKeyPressed;
|
|
1821
|
+
private config;
|
|
1822
|
+
constructor(params?: Partial<WeaveStageGridPluginParams>);
|
|
1823
|
+
getName(): string;
|
|
1824
|
+
getLayerName(): string;
|
|
1825
|
+
initLayer(): void;
|
|
1826
|
+
onInit(): void;
|
|
1827
|
+
private initEvents;
|
|
1828
|
+
getLayer(): Konva.Layer | undefined;
|
|
1829
|
+
getAdaptiveSpacing(scale: number): number;
|
|
1830
|
+
private getAdjustedSpacing;
|
|
1831
|
+
private renderGridLines;
|
|
1832
|
+
private renderGridDots;
|
|
1833
|
+
private renderGrid;
|
|
1834
|
+
onRender(): void;
|
|
1835
|
+
enable(): void;
|
|
1836
|
+
disable(): void;
|
|
1837
|
+
getType(): WeaveStageGridType;
|
|
1838
|
+
setType(type: WeaveStageGridType): void;
|
|
1839
|
+
}
|
|
1840
|
+
|
|
1841
|
+
//#endregion
|
|
1842
|
+
//#region src/plugins/stage-zoom/stage-zoom.d.ts
|
|
1843
|
+
//# sourceMappingURL=stage-grid.d.ts.map
|
|
1844
|
+
declare class WeaveStageZoomPlugin extends WeavePlugin {
|
|
1845
|
+
private isCtrlOrMetaPressed;
|
|
1846
|
+
protected previousPointer: string | null;
|
|
1847
|
+
getLayerName: undefined;
|
|
1848
|
+
initLayer: undefined;
|
|
1849
|
+
onRender: undefined;
|
|
1850
|
+
private config;
|
|
1851
|
+
private actualScale;
|
|
1852
|
+
private actualStep;
|
|
1853
|
+
private updatedMinimumZoom;
|
|
1854
|
+
private pinching;
|
|
1855
|
+
private zooming;
|
|
1856
|
+
private isTrackpad;
|
|
1857
|
+
private zoomVelocity;
|
|
1858
|
+
private zoomInertiaType;
|
|
1859
|
+
defaultStep: number;
|
|
1860
|
+
constructor(params?: WeaveStageZoomPluginParams);
|
|
1861
|
+
getName(): string;
|
|
1862
|
+
onInit(): void;
|
|
1863
|
+
private setZoom;
|
|
1864
|
+
canZoomOut(): boolean;
|
|
1865
|
+
canZoomIn(): boolean;
|
|
1866
|
+
zoomToStep(step: number): void;
|
|
1867
|
+
private findClosestStepIndex;
|
|
1868
|
+
zoomIn(pointer?: Vector2d): void;
|
|
1869
|
+
zoomOut(pointer?: Vector2d): void;
|
|
1870
|
+
minimumZoom(): number;
|
|
1871
|
+
fitToScreen(): void;
|
|
1872
|
+
fitToSelection(smartZoom?: boolean): void;
|
|
1873
|
+
enable(): void;
|
|
1874
|
+
disable(): void;
|
|
1875
|
+
getDistance(p1: Vector2d, p2: Vector2d): number;
|
|
1876
|
+
getCenter(p1: Vector2d, p2: Vector2d): {
|
|
1877
|
+
x: number;
|
|
1878
|
+
y: number;
|
|
1879
|
+
};
|
|
1880
|
+
private initEvents;
|
|
1881
|
+
getInertiaScale(): number;
|
|
1882
|
+
zoomTick(): void;
|
|
1883
|
+
isPinching(): boolean;
|
|
1884
|
+
getStageGridPlugin(): WeaveStageGridPlugin | undefined;
|
|
1885
|
+
getNodesSelectionPlugin(): WeaveNodesSelectionPlugin | undefined;
|
|
1886
|
+
getContextMenuPlugin(): WeaveContextMenuPlugin | undefined;
|
|
1887
|
+
}
|
|
1888
|
+
|
|
1889
|
+
//#endregion
|
|
1890
|
+
//#region src/actions/brush-tool/brush-tool.d.ts
|
|
1891
|
+
//# sourceMappingURL=stage-zoom.d.ts.map
|
|
1738
1892
|
declare class WeaveBrushToolAction extends WeaveAction {
|
|
1739
1893
|
protected initialized: boolean;
|
|
1740
1894
|
protected state: WeaveBrushToolActionState;
|
|
@@ -1761,6 +1915,7 @@ declare class WeaveBrushToolAction extends WeaveAction {
|
|
|
1761
1915
|
private handleEndStroke;
|
|
1762
1916
|
trigger(cancel: () => void): void;
|
|
1763
1917
|
cleanup(): void;
|
|
1918
|
+
getZoomPlugin(): WeaveStageZoomPlugin | undefined;
|
|
1764
1919
|
}
|
|
1765
1920
|
|
|
1766
1921
|
//#endregion
|
|
@@ -2243,164 +2398,9 @@ declare class WeaveAlignNodesToolAction extends WeaveAction {
|
|
|
2243
2398
|
cleanup(): void;
|
|
2244
2399
|
}
|
|
2245
2400
|
|
|
2246
|
-
//#endregion
|
|
2247
|
-
//#region src/plugins/stage-grid/constants.d.ts
|
|
2248
|
-
//# sourceMappingURL=align-nodes-tool.d.ts.map
|
|
2249
|
-
declare const WEAVE_STAGE_GRID_KEY = "stageGrid";
|
|
2250
|
-
declare const WEAVE_GRID_TYPES: {
|
|
2251
|
-
readonly LINES: "lines";
|
|
2252
|
-
readonly DOTS: "dots";
|
|
2253
|
-
};
|
|
2254
|
-
declare const WEAVE_GRID_DEFAULT_SIZE = 50;
|
|
2255
|
-
declare const WEAVE_GRID_DEFAULT_TYPE: string;
|
|
2256
|
-
declare const WEAVE_GRID_DEFAULT_COLOR = "rgba(0,0,0,0.1)";
|
|
2257
|
-
declare const WEAVE_GRID_DEFAULT_ORIGIN_COLOR = "rgba(255,0,0,0.1)";
|
|
2258
|
-
declare const WEAVE_GRID_DEFAULT_STROKE = 0.5;
|
|
2259
|
-
declare const WEAVE_GRID_DEFAULT_MAJOR_LINE_RATIO = 4;
|
|
2260
|
-
declare const WEAVE_GRID_DEFAULT_RADIUS = 1;
|
|
2261
|
-
declare const WEAVE_GRID_DEFAULT_MAJOR_DOT_RATIO = 2;
|
|
2262
|
-
declare const WEAVE_GRID_DEFAULT_MAJOR_EVERY = 10;
|
|
2263
|
-
declare const WEAVE_GRID_DEFAULT_DOT_MAX_DOTS_PER_AXIS = 250;
|
|
2264
|
-
declare const WEAVE_GRID_LAYER_ID = "gridLayer";
|
|
2265
|
-
|
|
2266
|
-
//#endregion
|
|
2267
|
-
//#region src/plugins/stage-grid/types.d.ts
|
|
2268
|
-
//# sourceMappingURL=constants.d.ts.map
|
|
2269
|
-
type WeaveStageGridPluginConfig = {
|
|
2270
|
-
type: WeaveStageGridType;
|
|
2271
|
-
gridColor: string;
|
|
2272
|
-
gridOriginColor: string;
|
|
2273
|
-
gridSize: number;
|
|
2274
|
-
gridMajorEvery?: number;
|
|
2275
|
-
gridMajorRatio?: number;
|
|
2276
|
-
gridStroke?: number;
|
|
2277
|
-
gridDotRadius?: number;
|
|
2278
|
-
gridDotMaxDotsPerAxis: number;
|
|
2279
|
-
};
|
|
2280
|
-
type WeaveStageGridPluginParams = {
|
|
2281
|
-
config?: Partial<WeaveStageGridPluginConfig>;
|
|
2282
|
-
};
|
|
2283
|
-
type WeaveStageGridTypeKeys = keyof typeof WEAVE_GRID_TYPES;
|
|
2284
|
-
type WeaveStageGridType = (typeof WEAVE_GRID_TYPES)[WeaveStageGridTypeKeys];
|
|
2285
|
-
|
|
2286
|
-
//#endregion
|
|
2287
|
-
//#region src/plugins/stage-grid/stage-grid.d.ts
|
|
2288
|
-
//# sourceMappingURL=types.d.ts.map
|
|
2289
|
-
declare class WeaveStageGridPlugin extends WeavePlugin {
|
|
2290
|
-
private moveToolActive;
|
|
2291
|
-
private isMouseMiddleButtonPressed;
|
|
2292
|
-
private isSpaceKeyPressed;
|
|
2293
|
-
private config;
|
|
2294
|
-
constructor(params?: Partial<WeaveStageGridPluginParams>);
|
|
2295
|
-
getName(): string;
|
|
2296
|
-
getLayerName(): string;
|
|
2297
|
-
initLayer(): void;
|
|
2298
|
-
onInit(): void;
|
|
2299
|
-
private initEvents;
|
|
2300
|
-
getLayer(): Konva.Layer | undefined;
|
|
2301
|
-
getAdaptiveSpacing(scale: number): number;
|
|
2302
|
-
private getAdjustedSpacing;
|
|
2303
|
-
private renderGridLines;
|
|
2304
|
-
private renderGridDots;
|
|
2305
|
-
private renderGrid;
|
|
2306
|
-
onRender(): void;
|
|
2307
|
-
enable(): void;
|
|
2308
|
-
disable(): void;
|
|
2309
|
-
getType(): WeaveStageGridType;
|
|
2310
|
-
setType(type: WeaveStageGridType): void;
|
|
2311
|
-
}
|
|
2312
|
-
|
|
2313
|
-
//#endregion
|
|
2314
|
-
//#region src/plugins/stage-zoom/constants.d.ts
|
|
2315
|
-
//# sourceMappingURL=stage-grid.d.ts.map
|
|
2316
|
-
declare const WEAVE_STAGE_ZOOM_TYPE: {
|
|
2317
|
-
readonly MOUSE_WHEEL: "mouseWheel";
|
|
2318
|
-
readonly PINCH_ZOOM: "pinchZoom";
|
|
2319
|
-
};
|
|
2320
|
-
|
|
2321
|
-
//#endregion
|
|
2322
|
-
//#region src/plugins/stage-zoom/types.d.ts
|
|
2323
|
-
type WeaveStageZoomTypeKeys = keyof typeof WEAVE_STAGE_ZOOM_TYPE;
|
|
2324
|
-
type WeaveStageZoomType = (typeof WEAVE_STAGE_ZOOM_TYPE)[WeaveStageZoomTypeKeys];
|
|
2325
|
-
type WeaveStageZoomChanged = {
|
|
2326
|
-
scale: number;
|
|
2327
|
-
zoomSteps: number[];
|
|
2328
|
-
actualStep: number;
|
|
2329
|
-
onDefaultStep: boolean;
|
|
2330
|
-
canZoomIn: boolean;
|
|
2331
|
-
canZoomOut: boolean;
|
|
2332
|
-
};
|
|
2333
|
-
type WeaveStageZoomPluginOnZoomChangeEvent = WeaveStageZoomChanged;
|
|
2334
|
-
type WeaveStageZoomPluginConfig = {
|
|
2335
|
-
zoomSteps: number[];
|
|
2336
|
-
defaultZoom: number;
|
|
2337
|
-
fitToScreen: {
|
|
2338
|
-
padding: number;
|
|
2339
|
-
};
|
|
2340
|
-
fitToSelection: {
|
|
2341
|
-
padding: number;
|
|
2342
|
-
};
|
|
2343
|
-
zoomInertia: {
|
|
2344
|
-
friction: number;
|
|
2345
|
-
mouseWheelStep: number;
|
|
2346
|
-
trackpadStep: number;
|
|
2347
|
-
};
|
|
2348
|
-
};
|
|
2349
|
-
type WeaveStageZoomPluginParams = {
|
|
2350
|
-
config?: DeepPartial<WeaveStageZoomPluginConfig>;
|
|
2351
|
-
};
|
|
2352
|
-
|
|
2353
|
-
//#endregion
|
|
2354
|
-
//#region src/plugins/stage-zoom/stage-zoom.d.ts
|
|
2355
|
-
//# sourceMappingURL=types.d.ts.map
|
|
2356
|
-
declare class WeaveStageZoomPlugin extends WeavePlugin {
|
|
2357
|
-
private isCtrlOrMetaPressed;
|
|
2358
|
-
protected previousPointer: string | null;
|
|
2359
|
-
getLayerName: undefined;
|
|
2360
|
-
initLayer: undefined;
|
|
2361
|
-
onRender: undefined;
|
|
2362
|
-
private config;
|
|
2363
|
-
private actualScale;
|
|
2364
|
-
private actualStep;
|
|
2365
|
-
private updatedMinimumZoom;
|
|
2366
|
-
private pinching;
|
|
2367
|
-
private zooming;
|
|
2368
|
-
private isTrackpad;
|
|
2369
|
-
private zoomVelocity;
|
|
2370
|
-
private zoomInertiaType;
|
|
2371
|
-
defaultStep: number;
|
|
2372
|
-
constructor(params?: WeaveStageZoomPluginParams);
|
|
2373
|
-
getName(): string;
|
|
2374
|
-
onInit(): void;
|
|
2375
|
-
private setZoom;
|
|
2376
|
-
canZoomOut(): boolean;
|
|
2377
|
-
canZoomIn(): boolean;
|
|
2378
|
-
zoomToStep(step: number): void;
|
|
2379
|
-
private findClosestStepIndex;
|
|
2380
|
-
zoomIn(pointer?: Vector2d): void;
|
|
2381
|
-
zoomOut(pointer?: Vector2d): void;
|
|
2382
|
-
minimumZoom(): number;
|
|
2383
|
-
fitToScreen(): void;
|
|
2384
|
-
fitToSelection(smartZoom?: boolean): void;
|
|
2385
|
-
enable(): void;
|
|
2386
|
-
disable(): void;
|
|
2387
|
-
getDistance(p1: Vector2d, p2: Vector2d): number;
|
|
2388
|
-
getCenter(p1: Vector2d, p2: Vector2d): {
|
|
2389
|
-
x: number;
|
|
2390
|
-
y: number;
|
|
2391
|
-
};
|
|
2392
|
-
private initEvents;
|
|
2393
|
-
getInertiaScale(): number;
|
|
2394
|
-
zoomTick(): void;
|
|
2395
|
-
isPinching(): boolean;
|
|
2396
|
-
getStageGridPlugin(): WeaveStageGridPlugin | undefined;
|
|
2397
|
-
getNodesSelectionPlugin(): WeaveNodesSelectionPlugin | undefined;
|
|
2398
|
-
getContextMenuPlugin(): WeaveContextMenuPlugin | undefined;
|
|
2399
|
-
}
|
|
2400
|
-
|
|
2401
2401
|
//#endregion
|
|
2402
2402
|
//#region src/plugins/stage-panning/stage-panning.d.ts
|
|
2403
|
-
//# sourceMappingURL=
|
|
2403
|
+
//# sourceMappingURL=align-nodes-tool.d.ts.map
|
|
2404
2404
|
declare class WeaveStagePanningPlugin extends WeavePlugin {
|
|
2405
2405
|
private moveToolActive;
|
|
2406
2406
|
private isMouseLeftButtonPressed;
|
|
@@ -2503,11 +2503,13 @@ declare const WEAVE_USER_SELECTION_KEY = "userSelection";
|
|
|
2503
2503
|
//# sourceMappingURL=constants.d.ts.map
|
|
2504
2504
|
type WeaveUsersSelectionPluginConfig = {
|
|
2505
2505
|
getUser: () => WeaveUser;
|
|
2506
|
+
getUserColor: (user: WeaveUser) => string | CanvasGradient | undefined;
|
|
2506
2507
|
};
|
|
2507
2508
|
type WeaveUsersSelectionPluginParams = {
|
|
2508
2509
|
config: WeaveUsersSelectionPluginConfig;
|
|
2509
2510
|
};
|
|
2510
2511
|
type WeaveUserSelectionInfo = {
|
|
2512
|
+
rawUser: WeaveUser;
|
|
2511
2513
|
user: string;
|
|
2512
2514
|
nodes: string[];
|
|
2513
2515
|
};
|
|
@@ -2578,12 +2580,15 @@ type WeaveUserPointersUIProperties = {
|
|
|
2578
2580
|
};
|
|
2579
2581
|
type WeaveUsersPointersPluginConfig = {
|
|
2580
2582
|
getUser: () => WeaveUser;
|
|
2583
|
+
getUserBackgroundColor: (user: WeaveUser) => string | CanvasGradient | undefined;
|
|
2584
|
+
getUserForegroundColor: (user: WeaveUser) => string | CanvasGradient | undefined;
|
|
2581
2585
|
ui?: WeaveUserPointersUIProperties;
|
|
2582
2586
|
};
|
|
2583
2587
|
type WeaveUsersPointersPluginParams = {
|
|
2584
2588
|
config: WeaveUsersPointersPluginConfig;
|
|
2585
2589
|
};
|
|
2586
2590
|
type WeaveUserPointer = {
|
|
2591
|
+
rawUser: WeaveUser;
|
|
2587
2592
|
user: string;
|
|
2588
2593
|
name: string;
|
|
2589
2594
|
x: number;
|
|
@@ -2753,5 +2758,5 @@ declare class WeaveCopyPasteNodesPlugin extends WeavePlugin {
|
|
|
2753
2758
|
//#endregion
|
|
2754
2759
|
//# sourceMappingURL=copy-paste-nodes.d.ts.map
|
|
2755
2760
|
|
|
2756
|
-
export { ALIGN_NODES_ALIGN_TO, ALIGN_NODES_TOOL_ACTION_NAME, ALIGN_NODES_TOOL_STATE, ARROW_TOOL_ACTION_NAME, ARROW_TOOL_STATE, BRUSH_TOOL_ACTION_NAME, BRUSH_TOOL_STATE, COPY_PASTE_NODES_PLUGIN_STATE, DistanceInfoH, DistanceInfoV, ELLIPSE_TOOL_ACTION_NAME, ELLIPSE_TOOL_STATE, ERASER_TOOL_ACTION_NAME, ERASER_TOOL_STATE, FRAME_TOOL_ACTION_NAME, FRAME_TOOL_STATE, GUIDE_DISTANCE_LINE_DEFAULT_CONFIG, GUIDE_ENTER_SNAPPING_TOLERANCE, GUIDE_EXIT_SNAPPING_TOLERANCE, GUIDE_HORIZONTAL_LINE_NAME, GUIDE_LINE_DEFAULT_CONFIG, GUIDE_LINE_DRAG_SNAPPING_THRESHOLD, GUIDE_LINE_NAME, GUIDE_LINE_TRANSFORM_SNAPPING_THRESHOLD, GUIDE_ORIENTATION, GUIDE_VERTICAL_LINE_NAME, Guide, GuideOrientation, GuideOrientationKeys, IMAGE_TOOL_ACTION_NAME, IMAGE_TOOL_STATE, ImageOptions, ImageProps, LineGuide, LineGuideStop, MOVE_TOOL_ACTION_NAME, MOVE_TOOL_STATE, NODE_SNAP, NODE_SNAP_HORIZONTAL, NODE_SNAP_VERTICAL, NodeSnap, NodeSnapHorizontal, NodeSnapHorizontalKeys, NodeSnapKeys, NodeSnapVertical, NodeSnapVerticalKeys, NodeSnappingEdge, NodeSnappingEdges, PEN_TOOL_ACTION_NAME, PEN_TOOL_STATE, PaddingOnPaste, RECTANGLE_TOOL_ACTION_NAME, RECTANGLE_TOOL_STATE, REGULAR_POLYGON_TOOL_ACTION_NAME, REGULAR_POLYGON_TOOL_STATE, SELECTION_TOOL_ACTION_NAME, SELECTION_TOOL_STATE, STAR_TOOL_ACTION_NAME, STAR_TOOL_STATE, TEXT_LAYOUT, TEXT_TOOL_ACTION_NAME, TEXT_TOOL_STATE, TextSerializable, WEAVE_ARROW_NODE_TYPE, WEAVE_COPY_PASTE_CONFIG_DEFAULT, WEAVE_COPY_PASTE_NODES_KEY, WEAVE_COPY_PASTE_PASTE_CATCHER_ID, WEAVE_COPY_PASTE_PASTE_MODES, WEAVE_DEFAULT_USER_INFO_FUNCTION, WEAVE_ELLIPSE_NODE_TYPE, WEAVE_FRAME_NODE_DEFAULT_CONFIG, WEAVE_FRAME_NODE_DEFAULT_PROPS, WEAVE_FRAME_NODE_TYPE, WEAVE_GRID_DEFAULT_COLOR, WEAVE_GRID_DEFAULT_DOT_MAX_DOTS_PER_AXIS, WEAVE_GRID_DEFAULT_MAJOR_DOT_RATIO, WEAVE_GRID_DEFAULT_MAJOR_EVERY, WEAVE_GRID_DEFAULT_MAJOR_LINE_RATIO, WEAVE_GRID_DEFAULT_ORIGIN_COLOR, WEAVE_GRID_DEFAULT_RADIUS, WEAVE_GRID_DEFAULT_SIZE, WEAVE_GRID_DEFAULT_STROKE, WEAVE_GRID_DEFAULT_TYPE, WEAVE_GRID_LAYER_ID, WEAVE_GRID_TYPES, WEAVE_GROUP_NODE_TYPE, WEAVE_IMAGE_CROP_END_TYPE, WEAVE_IMAGE_NODE_TYPE, WEAVE_LAYER_NODE_TYPE, WEAVE_LINE_NODE_TYPE, WEAVE_NODES_DISTANCE_SNAPPING_PLUGIN_KEY, WEAVE_NODES_EDGE_SNAPPING_PLUGIN_KEY, WEAVE_NODES_SELECTION_KEY, WEAVE_NODES_SELECTION_LAYER_ID, WEAVE_RECTANGLE_NODE_TYPE, WEAVE_REGULAR_POLYGON_NODE_TYPE, WEAVE_STAGE_DEFAULT_MODE, WEAVE_STAGE_GRID_KEY, WEAVE_STAGE_NODE_TYPE, WEAVE_STAR_NODE_TYPE, WEAVE_STROKE_NODE_TYPE, WEAVE_TEXT_NODE_TYPE, WEAVE_USERS_POINTERS_KEY, WEAVE_USERS_SELECTION_KEY, WEAVE_USER_POINTERS_DEFAULT_PROPS, WEAVE_USER_POINTER_KEY, WEAVE_USER_SELECTION_KEY, Weave, WeaveAction, WeaveActionPropsChangeEvent, WeaveAlignNodesToolAction, WeaveAlignNodesToolActionAlignTo, WeaveAlignNodesToolActionAlignToKeys, WeaveAlignNodesToolActionState, WeaveAlignNodesToolActionStateKeys, WeaveAlignNodesToolActionTriggerParams, WeaveArrowNode, WeaveArrowNodeParams, WeaveArrowProperties, WeaveArrowToolAction, WeaveArrowToolActionOnAddedEvent, WeaveArrowToolActionOnAddingEvent, WeaveArrowToolActionState, WeaveArrowToolActionStateKeys, WeaveBrushToolAction, WeaveBrushToolActionOnAddedEvent, WeaveBrushToolActionOnAddingEvent, WeaveBrushToolActionState, WeaveBrushToolActionStateKeys, WeaveConnectedUserInfoKey, WeaveConnectedUsers, WeaveConnectedUsersChangeEvent, WeaveConnectedUsersPlugin, WeaveConnectedUsersPluginConfig, WeaveConnectedUsersPluginParams, WeaveContextMenuPlugin, WeaveCopyPasteNodesPlugin, WeaveCopyPasteNodesPluginConfig, WeaveCopyPasteNodesPluginOnCopyEvent, WeaveCopyPasteNodesPluginOnPasteEvent, WeaveCopyPasteNodesPluginOnPasteExternalEvent, WeaveCopyPasteNodesPluginParams, WeaveCopyPasteNodesPluginState, WeaveCopyPasteNodesPluginStateKeys, WeaveCopyPastePasteMode, WeaveCopyPastePasteModeKeys, WeaveEllipseNode, WeaveEllipseNodeParams, WeaveEllipseProperties, WeaveEllipseToolAction, WeaveEllipseToolActionOnAddedEvent, WeaveEllipseToolActionOnAddingEvent, WeaveEllipseToolActionState, WeaveEllipseToolActionStateKeys, WeaveEraserToolAction, WeaveEraserToolActionState, WeaveEraserToolActionStateKeys, WeaveExportNodesActionParams, WeaveExportNodesToolAction, WeaveExportStageActionParams, WeaveExportStageToolAction, WeaveFitToScreenToolAction, WeaveFitToScreenToolActionParams, WeaveFitToSelectionToolAction, WeaveFitToSelectionToolActionParams, WeaveFrameAttributes, WeaveFrameNode, WeaveFrameNodeParams, WeaveFrameProperties, WeaveFrameToolAction, WeaveFrameToolActionOnAddedEvent, WeaveFrameToolActionOnAddingEvent, WeaveFrameToolActionState, WeaveFrameToolActionStateKeys, WeaveFrameToolActionTriggerParams, WeaveFrameToolProps, WeaveGroupNode, WeaveGroupNodeParams, WeaveGroupProperties, WeaveImageCropEndType, WeaveImageCropEndTypeKeys, WeaveImageNode, WeaveImageNodeParams, WeaveImageOnCropEndEvent, WeaveImageOnCropStartEvent, WeaveImageProperties, WeaveImageToolAction, WeaveImageToolActionOnAddedEvent, WeaveImageToolActionOnAddingEvent, WeaveImageToolActionOnEndLoadImageEvent, WeaveImageToolActionOnStartLoadImageEvent, WeaveImageToolActionState, WeaveImageToolActionStateKeys, WeaveImageToolActionTriggerParams, WeaveImageToolActionTriggerReturn, WeaveLayerNode, WeaveLineNode, WeaveLineNodeParams, WeaveLineProperties, WeaveMoveToolAction, WeaveMoveToolActionParams, WeaveMoveToolActionState, WeaveMoveToolActionStateKeys, WeaveNode, WeaveNodesDistanceSnappingPlugin, WeaveNodesDistanceSnappingPluginConfig, WeaveNodesDistanceSnappingPluginParams, WeaveNodesDistanceSnappingUIConfig, WeaveNodesEdgeSnappingPlugin, WeaveNodesEdgeSnappingPluginConfig, WeaveNodesEdgeSnappingPluginParams, WeaveNodesSelectionBehaviorsConfig, WeaveNodesSelectionConfig, WeaveNodesSelectionPlugin, WeaveNodesSelectionPluginConfig, WeaveNodesSelectionPluginOnNodesChangeEvent, WeaveNodesSelectionPluginOnSelectionStateEvent, WeaveNodesSelectionPluginOnStageSelectionEvent, WeaveNodesSelectionPluginParams, WeavePasteModel, WeavePenToolAction, WeavePenToolActionOnAddedEvent, WeavePenToolActionOnAddingEvent, WeavePenToolActionState, WeavePenToolActionStateKeys, WeavePlugin, WeaveRectangleNode, WeaveRectangleNodeParams, WeaveRectangleProperties, WeaveRectangleToolAction, WeaveRectangleToolActionOnAddedEvent, WeaveRectangleToolActionOnAddingEvent, WeaveRectangleToolActionState, WeaveRectangleToolActionStateKeys, WeaveRegularPolygonNode, WeaveRegularPolygonNodeParams, WeaveRegularPolygonProperties, WeaveRegularPolygonToolAction, WeaveRegularPolygonToolActionOnAddedEvent, WeaveRegularPolygonToolActionOnAddingEvent, WeaveRegularPolygonToolActionState, WeaveRegularPolygonToolActionStateKeys, WeaveSelectionToolAction, WeaveSelectionToolActionState, WeaveSelectionToolActionStateKeys, WeaveStageContextMenuPluginConfig, WeaveStageContextMenuPluginOnNodeContextMenuEvent, WeaveStageContextMenuPluginParams, WeaveStageDropAreaPlugin, WeaveStageDropPluginOnStageDropEvent, WeaveStageGridPlugin, WeaveStageGridPluginConfig, WeaveStageGridPluginParams, WeaveStageGridType, WeaveStageGridTypeKeys, WeaveStageNode, WeaveStagePanningPlugin, WeaveStageResizePlugin, WeaveStageZoomChanged, WeaveStageZoomPlugin, WeaveStageZoomPluginConfig, WeaveStageZoomPluginOnZoomChangeEvent, WeaveStageZoomPluginParams, WeaveStageZoomType, WeaveStageZoomTypeKeys, WeaveStarNode, WeaveStarNodeParams, WeaveStarProperties, WeaveStarToolAction, WeaveStarToolActionOnAddedEvent, WeaveStarToolActionOnAddingEvent, WeaveStarToolActionState, WeaveStarToolActionStateKeys, WeaveStore, WeaveStoreOnNodeChangeEvent, WeaveStoreOnRoomLoadedEvent, WeaveStoreOnStateChangeEvent, WeaveStoreOnUndoRedoChangeEvent, WeaveStrokeNode, WeaveStrokeNodeParams, WeaveStrokePoint, WeaveStrokeProperties, WeaveTextLayout, WeaveTextLayoutKeys, WeaveTextNode, WeaveTextNodeParams, WeaveTextProperties, WeaveTextToolAction, WeaveTextToolActionOnAddedEvent, WeaveTextToolActionOnAddingEvent, WeaveTextToolActionState, WeaveTextToolActionStateKeys, WeaveToPasteNode, WeaveUserPointer, WeaveUserPointerKey, WeaveUserPointersUIProperties, WeaveUserSelectionInfo, WeaveUserSelectionKey, WeaveUsersPointersPlugin, WeaveUsersPointersPluginConfig, WeaveUsersPointersPluginParams, WeaveUsersSelectionPlugin, WeaveUsersSelectionPluginConfig, WeaveUsersSelectionPluginParams, WeaveZoomInToolAction, WeaveZoomInToolActionParams, WeaveZoomOutToolAction, WeaveZoomOutToolActionParams, clearContainerTargets, containerOverCursor, containsNodeDeep, getBoundingBox, getClosestParentWithId,
|
|
2761
|
+
export { ALIGN_NODES_ALIGN_TO, ALIGN_NODES_TOOL_ACTION_NAME, ALIGN_NODES_TOOL_STATE, ARROW_TOOL_ACTION_NAME, ARROW_TOOL_STATE, BRUSH_TOOL_ACTION_NAME, BRUSH_TOOL_STATE, COPY_PASTE_NODES_PLUGIN_STATE, DistanceInfoH, DistanceInfoV, ELLIPSE_TOOL_ACTION_NAME, ELLIPSE_TOOL_STATE, ERASER_TOOL_ACTION_NAME, ERASER_TOOL_STATE, FRAME_TOOL_ACTION_NAME, FRAME_TOOL_STATE, GUIDE_DISTANCE_LINE_DEFAULT_CONFIG, GUIDE_ENTER_SNAPPING_TOLERANCE, GUIDE_EXIT_SNAPPING_TOLERANCE, GUIDE_HORIZONTAL_LINE_NAME, GUIDE_LINE_DEFAULT_CONFIG, GUIDE_LINE_DRAG_SNAPPING_THRESHOLD, GUIDE_LINE_NAME, GUIDE_LINE_TRANSFORM_SNAPPING_THRESHOLD, GUIDE_ORIENTATION, GUIDE_VERTICAL_LINE_NAME, Guide, GuideOrientation, GuideOrientationKeys, IMAGE_TOOL_ACTION_NAME, IMAGE_TOOL_STATE, ImageOptions, ImageProps, LineGuide, LineGuideStop, MOVE_TOOL_ACTION_NAME, MOVE_TOOL_STATE, NODE_SNAP, NODE_SNAP_HORIZONTAL, NODE_SNAP_VERTICAL, NodeSnap, NodeSnapHorizontal, NodeSnapHorizontalKeys, NodeSnapKeys, NodeSnapVertical, NodeSnapVerticalKeys, NodeSnappingEdge, NodeSnappingEdges, PEN_TOOL_ACTION_NAME, PEN_TOOL_STATE, PaddingOnPaste, RECTANGLE_TOOL_ACTION_NAME, RECTANGLE_TOOL_STATE, REGULAR_POLYGON_TOOL_ACTION_NAME, REGULAR_POLYGON_TOOL_STATE, SELECTION_TOOL_ACTION_NAME, SELECTION_TOOL_STATE, STAR_TOOL_ACTION_NAME, STAR_TOOL_STATE, TEXT_LAYOUT, TEXT_TOOL_ACTION_NAME, TEXT_TOOL_STATE, TextSerializable, WEAVE_ARROW_NODE_TYPE, WEAVE_COPY_PASTE_CONFIG_DEFAULT, WEAVE_COPY_PASTE_NODES_KEY, WEAVE_COPY_PASTE_PASTE_CATCHER_ID, WEAVE_COPY_PASTE_PASTE_MODES, WEAVE_DEFAULT_USER_INFO_FUNCTION, WEAVE_ELLIPSE_NODE_TYPE, WEAVE_FRAME_NODE_DEFAULT_CONFIG, WEAVE_FRAME_NODE_DEFAULT_PROPS, WEAVE_FRAME_NODE_TYPE, WEAVE_GRID_DEFAULT_COLOR, WEAVE_GRID_DEFAULT_DOT_MAX_DOTS_PER_AXIS, WEAVE_GRID_DEFAULT_MAJOR_DOT_RATIO, WEAVE_GRID_DEFAULT_MAJOR_EVERY, WEAVE_GRID_DEFAULT_MAJOR_LINE_RATIO, WEAVE_GRID_DEFAULT_ORIGIN_COLOR, WEAVE_GRID_DEFAULT_RADIUS, WEAVE_GRID_DEFAULT_SIZE, WEAVE_GRID_DEFAULT_STROKE, WEAVE_GRID_DEFAULT_TYPE, WEAVE_GRID_LAYER_ID, WEAVE_GRID_TYPES, WEAVE_GROUP_NODE_TYPE, WEAVE_IMAGE_CROP_END_TYPE, WEAVE_IMAGE_NODE_TYPE, WEAVE_LAYER_NODE_TYPE, WEAVE_LINE_NODE_TYPE, WEAVE_NODES_DISTANCE_SNAPPING_PLUGIN_KEY, WEAVE_NODES_EDGE_SNAPPING_PLUGIN_KEY, WEAVE_NODES_SELECTION_KEY, WEAVE_NODES_SELECTION_LAYER_ID, WEAVE_RECTANGLE_NODE_TYPE, WEAVE_REGULAR_POLYGON_NODE_TYPE, WEAVE_STAGE_DEFAULT_MODE, WEAVE_STAGE_GRID_KEY, WEAVE_STAGE_NODE_TYPE, WEAVE_STAR_NODE_TYPE, WEAVE_STROKE_NODE_TYPE, WEAVE_TEXT_NODE_TYPE, WEAVE_USERS_POINTERS_KEY, WEAVE_USERS_SELECTION_KEY, WEAVE_USER_POINTERS_DEFAULT_PROPS, WEAVE_USER_POINTER_KEY, WEAVE_USER_SELECTION_KEY, Weave, WeaveAction, WeaveActionPropsChangeEvent, WeaveAlignNodesToolAction, WeaveAlignNodesToolActionAlignTo, WeaveAlignNodesToolActionAlignToKeys, WeaveAlignNodesToolActionState, WeaveAlignNodesToolActionStateKeys, WeaveAlignNodesToolActionTriggerParams, WeaveArrowNode, WeaveArrowNodeParams, WeaveArrowProperties, WeaveArrowToolAction, WeaveArrowToolActionOnAddedEvent, WeaveArrowToolActionOnAddingEvent, WeaveArrowToolActionState, WeaveArrowToolActionStateKeys, WeaveBrushToolAction, WeaveBrushToolActionOnAddedEvent, WeaveBrushToolActionOnAddingEvent, WeaveBrushToolActionState, WeaveBrushToolActionStateKeys, WeaveConnectedUserInfoKey, WeaveConnectedUsers, WeaveConnectedUsersChangeEvent, WeaveConnectedUsersPlugin, WeaveConnectedUsersPluginConfig, WeaveConnectedUsersPluginParams, WeaveContextMenuPlugin, WeaveCopyPasteNodesPlugin, WeaveCopyPasteNodesPluginConfig, WeaveCopyPasteNodesPluginOnCopyEvent, WeaveCopyPasteNodesPluginOnPasteEvent, WeaveCopyPasteNodesPluginOnPasteExternalEvent, WeaveCopyPasteNodesPluginParams, WeaveCopyPasteNodesPluginState, WeaveCopyPasteNodesPluginStateKeys, WeaveCopyPastePasteMode, WeaveCopyPastePasteModeKeys, WeaveEllipseNode, WeaveEllipseNodeParams, WeaveEllipseProperties, WeaveEllipseToolAction, WeaveEllipseToolActionOnAddedEvent, WeaveEllipseToolActionOnAddingEvent, WeaveEllipseToolActionState, WeaveEllipseToolActionStateKeys, WeaveEraserToolAction, WeaveEraserToolActionState, WeaveEraserToolActionStateKeys, WeaveExportNodesActionParams, WeaveExportNodesToolAction, WeaveExportStageActionParams, WeaveExportStageToolAction, WeaveFitToScreenToolAction, WeaveFitToScreenToolActionParams, WeaveFitToSelectionToolAction, WeaveFitToSelectionToolActionParams, WeaveFrameAttributes, WeaveFrameNode, WeaveFrameNodeParams, WeaveFrameProperties, WeaveFrameToolAction, WeaveFrameToolActionOnAddedEvent, WeaveFrameToolActionOnAddingEvent, WeaveFrameToolActionState, WeaveFrameToolActionStateKeys, WeaveFrameToolActionTriggerParams, WeaveFrameToolProps, WeaveGroupNode, WeaveGroupNodeParams, WeaveGroupProperties, WeaveImageCropEndType, WeaveImageCropEndTypeKeys, WeaveImageNode, WeaveImageNodeParams, WeaveImageOnCropEndEvent, WeaveImageOnCropStartEvent, WeaveImageProperties, WeaveImageToolAction, WeaveImageToolActionOnAddedEvent, WeaveImageToolActionOnAddingEvent, WeaveImageToolActionOnEndLoadImageEvent, WeaveImageToolActionOnStartLoadImageEvent, WeaveImageToolActionState, WeaveImageToolActionStateKeys, WeaveImageToolActionTriggerParams, WeaveImageToolActionTriggerReturn, WeaveLayerNode, WeaveLineNode, WeaveLineNodeParams, WeaveLineProperties, WeaveMoveToolAction, WeaveMoveToolActionParams, WeaveMoveToolActionState, WeaveMoveToolActionStateKeys, WeaveNode, WeaveNodesDistanceSnappingPlugin, WeaveNodesDistanceSnappingPluginConfig, WeaveNodesDistanceSnappingPluginParams, WeaveNodesDistanceSnappingUIConfig, WeaveNodesEdgeSnappingPlugin, WeaveNodesEdgeSnappingPluginConfig, WeaveNodesEdgeSnappingPluginParams, WeaveNodesSelectionBehaviorsConfig, WeaveNodesSelectionConfig, WeaveNodesSelectionPlugin, WeaveNodesSelectionPluginConfig, WeaveNodesSelectionPluginOnNodesChangeEvent, WeaveNodesSelectionPluginOnSelectionStateEvent, WeaveNodesSelectionPluginOnStageSelectionEvent, WeaveNodesSelectionPluginParams, WeavePasteModel, WeavePenToolAction, WeavePenToolActionOnAddedEvent, WeavePenToolActionOnAddingEvent, WeavePenToolActionState, WeavePenToolActionStateKeys, WeavePlugin, WeaveRectangleNode, WeaveRectangleNodeParams, WeaveRectangleProperties, WeaveRectangleToolAction, WeaveRectangleToolActionOnAddedEvent, WeaveRectangleToolActionOnAddingEvent, WeaveRectangleToolActionState, WeaveRectangleToolActionStateKeys, WeaveRegularPolygonNode, WeaveRegularPolygonNodeParams, WeaveRegularPolygonProperties, WeaveRegularPolygonToolAction, WeaveRegularPolygonToolActionOnAddedEvent, WeaveRegularPolygonToolActionOnAddingEvent, WeaveRegularPolygonToolActionState, WeaveRegularPolygonToolActionStateKeys, WeaveSelectionToolAction, WeaveSelectionToolActionState, WeaveSelectionToolActionStateKeys, WeaveStageContextMenuPluginConfig, WeaveStageContextMenuPluginOnNodeContextMenuEvent, WeaveStageContextMenuPluginParams, WeaveStageDropAreaPlugin, WeaveStageDropPluginOnStageDropEvent, WeaveStageGridPlugin, WeaveStageGridPluginConfig, WeaveStageGridPluginParams, WeaveStageGridType, WeaveStageGridTypeKeys, WeaveStageNode, WeaveStagePanningPlugin, WeaveStageResizePlugin, WeaveStageZoomChanged, WeaveStageZoomPlugin, WeaveStageZoomPluginConfig, WeaveStageZoomPluginOnZoomChangeEvent, WeaveStageZoomPluginParams, WeaveStageZoomType, WeaveStageZoomTypeKeys, WeaveStarNode, WeaveStarNodeParams, WeaveStarProperties, WeaveStarToolAction, WeaveStarToolActionOnAddedEvent, WeaveStarToolActionOnAddingEvent, WeaveStarToolActionState, WeaveStarToolActionStateKeys, WeaveStore, WeaveStoreOnNodeChangeEvent, WeaveStoreOnRoomLoadedEvent, WeaveStoreOnStateChangeEvent, WeaveStoreOnUndoRedoChangeEvent, WeaveStrokeNode, WeaveStrokeNodeParams, WeaveStrokePoint, WeaveStrokeProperties, WeaveTextLayout, WeaveTextLayoutKeys, WeaveTextNode, WeaveTextNodeParams, WeaveTextProperties, WeaveTextToolAction, WeaveTextToolActionOnAddedEvent, WeaveTextToolActionOnAddingEvent, WeaveTextToolActionState, WeaveTextToolActionStateKeys, WeaveToPasteNode, WeaveUserPointer, WeaveUserPointerKey, WeaveUserPointersUIProperties, WeaveUserSelectionInfo, WeaveUserSelectionKey, WeaveUsersPointersPlugin, WeaveUsersPointersPluginConfig, WeaveUsersPointersPluginParams, WeaveUsersSelectionPlugin, WeaveUsersSelectionPluginConfig, WeaveUsersSelectionPluginParams, WeaveZoomInToolAction, WeaveZoomInToolActionParams, WeaveZoomOutToolAction, WeaveZoomOutToolActionParams, clearContainerTargets, containerOverCursor, containsNodeDeep, getBoundingBox, getClosestParentWithId, getExportBoundingBox, getSelectedNodesMetadata, getTargetAndSkipNodes, getTargetedNode, getTopmostShadowHost, getVisibleNodes, getVisibleNodesInViewport, hasFrames, hasImages, intersectArrays, isInShadowDOM, isNodeInSelection, memoize, moveNodeToContainer, resetScale };
|
|
2757
2762
|
//# sourceMappingURL=sdk.d.ts.map
|