@tldraw/editor 3.13.0-canary.42efa4c14663 → 3.13.0-canary.4389e5975660
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-cjs/index.d.ts +105 -110
- package/dist-cjs/index.js +7 -22
- package/dist-cjs/index.js.map +2 -2
- package/dist-cjs/lib/TldrawEditor.js +2 -1
- package/dist-cjs/lib/TldrawEditor.js.map +2 -2
- package/dist-cjs/lib/components/Shape.js +12 -8
- package/dist-cjs/lib/components/Shape.js.map +2 -2
- package/dist-cjs/lib/components/default-components/DefaultCanvas.js +27 -2
- package/dist-cjs/lib/components/default-components/DefaultCanvas.js.map +2 -2
- package/dist-cjs/lib/components/default-components/DefaultErrorFallback.js +14 -12
- package/dist-cjs/lib/components/default-components/DefaultErrorFallback.js.map +2 -2
- package/dist-cjs/lib/components/default-components/DefaultShapeIndicator.js +17 -11
- package/dist-cjs/lib/components/default-components/DefaultShapeIndicator.js.map +2 -2
- package/dist-cjs/lib/components/default-components/DefaultSpinner.js +1 -1
- package/dist-cjs/lib/components/default-components/DefaultSpinner.js.map +2 -2
- package/dist-cjs/lib/editor/Editor.js +25 -15
- package/dist-cjs/lib/editor/Editor.js.map +2 -2
- package/dist-cjs/lib/editor/managers/SnapManager/HandleSnaps.js.map +2 -2
- package/dist-cjs/lib/editor/managers/TextManager.js +10 -0
- package/dist-cjs/lib/editor/managers/TextManager.js.map +2 -2
- package/dist-cjs/lib/editor/shapes/ShapeUtil.js.map +2 -2
- package/dist-cjs/lib/editor/shapes/shared/getPerfectDashProps.js.map +2 -2
- package/dist-cjs/lib/exports/getSvgJsx.js +12 -3
- package/dist-cjs/lib/exports/getSvgJsx.js.map +2 -2
- package/dist-cjs/lib/hooks/useDocumentEvents.js +3 -2
- package/dist-cjs/lib/hooks/useDocumentEvents.js.map +2 -2
- package/dist-cjs/lib/hooks/useEditorComponents.js +16 -15
- package/dist-cjs/lib/hooks/useEditorComponents.js.map +2 -2
- package/dist-cjs/lib/license/LicenseManager.js +8 -1
- package/dist-cjs/lib/license/LicenseManager.js.map +2 -2
- package/dist-cjs/lib/options.js.map +2 -2
- package/dist-cjs/lib/primitives/Box.js +16 -0
- package/dist-cjs/lib/primitives/Box.js.map +2 -2
- package/dist-cjs/lib/primitives/Mat.js +1 -1
- package/dist-cjs/lib/primitives/Mat.js.map +2 -2
- package/dist-cjs/lib/primitives/Vec.js +20 -0
- package/dist-cjs/lib/primitives/Vec.js.map +2 -2
- package/dist-cjs/lib/primitives/geometry/Arc2d.js +2 -2
- package/dist-cjs/lib/primitives/geometry/Arc2d.js.map +2 -2
- package/dist-cjs/lib/primitives/geometry/Circle2d.js +1 -1
- package/dist-cjs/lib/primitives/geometry/Circle2d.js.map +2 -2
- package/dist-cjs/lib/primitives/geometry/CubicBezier2d.js +1 -1
- package/dist-cjs/lib/primitives/geometry/CubicBezier2d.js.map +2 -2
- package/dist-cjs/lib/primitives/geometry/CubicSpline2d.js.map +2 -2
- package/dist-cjs/lib/primitives/geometry/Edge2d.js +1 -1
- package/dist-cjs/lib/primitives/geometry/Edge2d.js.map +2 -2
- package/dist-cjs/lib/primitives/geometry/Ellipse2d.js.map +2 -2
- package/dist-cjs/lib/primitives/geometry/Geometry2d.js +91 -20
- package/dist-cjs/lib/primitives/geometry/Geometry2d.js.map +2 -2
- package/dist-cjs/lib/primitives/geometry/Group2d.js +55 -2
- package/dist-cjs/lib/primitives/geometry/Group2d.js.map +2 -2
- package/dist-cjs/lib/primitives/geometry/Point2d.js.map +2 -2
- package/dist-cjs/lib/primitives/geometry/Polyline2d.js.map +2 -2
- package/dist-cjs/lib/primitives/geometry/Stadium2d.js.map +2 -2
- package/dist-cjs/lib/utils/areShapesContentEqual.js +25 -0
- package/dist-cjs/lib/utils/areShapesContentEqual.js.map +7 -0
- package/dist-cjs/lib/utils/debug-flags.js +5 -2
- package/dist-cjs/lib/utils/debug-flags.js.map +2 -2
- package/dist-cjs/lib/utils/dom.js +3 -3
- package/dist-cjs/lib/utils/dom.js.map +2 -2
- package/dist-cjs/lib/utils/nearestMultiple.js +34 -0
- package/dist-cjs/lib/utils/nearestMultiple.js.map +7 -0
- package/dist-cjs/lib/utils/rotation.js +5 -5
- package/dist-cjs/lib/utils/rotation.js.map +2 -2
- package/dist-cjs/version.js +3 -3
- package/dist-cjs/version.js.map +1 -1
- package/dist-esm/index.d.mts +105 -110
- package/dist-esm/index.mjs +9 -41
- package/dist-esm/index.mjs.map +2 -2
- package/dist-esm/lib/TldrawEditor.mjs +2 -1
- package/dist-esm/lib/TldrawEditor.mjs.map +2 -2
- package/dist-esm/lib/components/Shape.mjs +12 -8
- package/dist-esm/lib/components/Shape.mjs.map +2 -2
- package/dist-esm/lib/components/default-components/DefaultCanvas.mjs +27 -2
- package/dist-esm/lib/components/default-components/DefaultCanvas.mjs.map +2 -2
- package/dist-esm/lib/components/default-components/DefaultErrorFallback.mjs +14 -12
- package/dist-esm/lib/components/default-components/DefaultErrorFallback.mjs.map +2 -2
- package/dist-esm/lib/components/default-components/DefaultShapeIndicator.mjs +17 -11
- package/dist-esm/lib/components/default-components/DefaultShapeIndicator.mjs.map +2 -2
- package/dist-esm/lib/components/default-components/DefaultSpinner.mjs +1 -1
- package/dist-esm/lib/components/default-components/DefaultSpinner.mjs.map +2 -2
- package/dist-esm/lib/editor/Editor.mjs +25 -15
- package/dist-esm/lib/editor/Editor.mjs.map +2 -2
- package/dist-esm/lib/editor/managers/SnapManager/HandleSnaps.mjs.map +2 -2
- package/dist-esm/lib/editor/managers/TextManager.mjs +10 -0
- package/dist-esm/lib/editor/managers/TextManager.mjs.map +2 -2
- package/dist-esm/lib/editor/shapes/ShapeUtil.mjs.map +2 -2
- package/dist-esm/lib/editor/shapes/shared/getPerfectDashProps.mjs.map +2 -2
- package/dist-esm/lib/exports/getSvgJsx.mjs +12 -3
- package/dist-esm/lib/exports/getSvgJsx.mjs.map +2 -2
- package/dist-esm/lib/hooks/useDocumentEvents.mjs +3 -2
- package/dist-esm/lib/hooks/useDocumentEvents.mjs.map +2 -2
- package/dist-esm/lib/hooks/useEditorComponents.mjs +16 -15
- package/dist-esm/lib/hooks/useEditorComponents.mjs.map +2 -2
- package/dist-esm/lib/license/LicenseManager.mjs +8 -1
- package/dist-esm/lib/license/LicenseManager.mjs.map +2 -2
- package/dist-esm/lib/options.mjs.map +2 -2
- package/dist-esm/lib/primitives/Box.mjs +16 -0
- package/dist-esm/lib/primitives/Box.mjs.map +2 -2
- package/dist-esm/lib/primitives/Mat.mjs +1 -1
- package/dist-esm/lib/primitives/Mat.mjs.map +2 -2
- package/dist-esm/lib/primitives/Vec.mjs +20 -0
- package/dist-esm/lib/primitives/Vec.mjs.map +2 -2
- package/dist-esm/lib/primitives/geometry/Arc2d.mjs +2 -2
- package/dist-esm/lib/primitives/geometry/Arc2d.mjs.map +2 -2
- package/dist-esm/lib/primitives/geometry/Circle2d.mjs +1 -1
- package/dist-esm/lib/primitives/geometry/Circle2d.mjs.map +2 -2
- package/dist-esm/lib/primitives/geometry/CubicBezier2d.mjs +1 -1
- package/dist-esm/lib/primitives/geometry/CubicBezier2d.mjs.map +2 -2
- package/dist-esm/lib/primitives/geometry/CubicSpline2d.mjs.map +2 -2
- package/dist-esm/lib/primitives/geometry/Edge2d.mjs +1 -1
- package/dist-esm/lib/primitives/geometry/Edge2d.mjs.map +2 -2
- package/dist-esm/lib/primitives/geometry/Ellipse2d.mjs.map +2 -2
- package/dist-esm/lib/primitives/geometry/Geometry2d.mjs +92 -21
- package/dist-esm/lib/primitives/geometry/Geometry2d.mjs.map +2 -2
- package/dist-esm/lib/primitives/geometry/Group2d.mjs +55 -2
- package/dist-esm/lib/primitives/geometry/Group2d.mjs.map +2 -2
- package/dist-esm/lib/primitives/geometry/Point2d.mjs.map +2 -2
- package/dist-esm/lib/primitives/geometry/Polyline2d.mjs.map +2 -2
- package/dist-esm/lib/primitives/geometry/Stadium2d.mjs.map +2 -2
- package/dist-esm/lib/utils/areShapesContentEqual.mjs +5 -0
- package/dist-esm/lib/utils/areShapesContentEqual.mjs.map +7 -0
- package/dist-esm/lib/utils/debug-flags.mjs +5 -2
- package/dist-esm/lib/utils/debug-flags.mjs.map +2 -2
- package/dist-esm/lib/utils/dom.mjs +3 -3
- package/dist-esm/lib/utils/dom.mjs.map +2 -2
- package/dist-esm/lib/utils/nearestMultiple.mjs +14 -0
- package/dist-esm/lib/utils/nearestMultiple.mjs.map +7 -0
- package/dist-esm/lib/utils/rotation.mjs +5 -5
- package/dist-esm/lib/utils/rotation.mjs.map +2 -2
- package/dist-esm/version.mjs +3 -3
- package/dist-esm/version.mjs.map +1 -1
- package/editor.css +40 -0
- package/package.json +7 -7
- package/src/index.ts +16 -31
- package/src/lib/TldrawEditor.tsx +6 -1
- package/src/lib/components/Shape.tsx +14 -10
- package/src/lib/components/default-components/DefaultCanvas.tsx +32 -2
- package/src/lib/components/default-components/DefaultErrorFallback.tsx +25 -14
- package/src/lib/components/default-components/DefaultShapeIndicator.tsx +17 -8
- package/src/lib/components/default-components/DefaultSpinner.tsx +1 -1
- package/src/lib/editor/Editor.test.ts +1 -1
- package/src/lib/editor/Editor.ts +25 -15
- package/src/lib/editor/managers/SnapManager/HandleSnaps.ts +0 -1
- package/src/lib/editor/managers/TextManager.ts +12 -0
- package/src/lib/editor/shapes/ShapeUtil.ts +13 -1
- package/src/lib/editor/shapes/shared/getPerfectDashProps.ts +9 -9
- package/src/lib/exports/getSvgJsx.tsx +16 -7
- package/src/lib/hooks/useDocumentEvents.ts +7 -2
- package/src/lib/hooks/useEditorComponents.tsx +32 -28
- package/src/lib/license/LicenseManager.test.ts +40 -0
- package/src/lib/license/LicenseManager.ts +13 -1
- package/src/lib/options.ts +4 -0
- package/src/lib/primitives/Box.ts +20 -0
- package/src/lib/primitives/Mat.ts +5 -4
- package/src/lib/primitives/Vec.ts +23 -0
- package/src/lib/primitives/geometry/Arc2d.ts +5 -5
- package/src/lib/primitives/geometry/Circle2d.ts +4 -4
- package/src/lib/primitives/geometry/CubicBezier2d.ts +4 -4
- package/src/lib/primitives/geometry/CubicSpline2d.ts +3 -3
- package/src/lib/primitives/geometry/Edge2d.ts +3 -3
- package/src/lib/primitives/geometry/Ellipse2d.ts +3 -3
- package/src/lib/primitives/geometry/Geometry2d.test.ts +42 -0
- package/src/lib/primitives/geometry/Geometry2d.ts +123 -35
- package/src/lib/primitives/geometry/Group2d.ts +70 -7
- package/src/lib/primitives/geometry/Point2d.ts +2 -2
- package/src/lib/primitives/geometry/Polyline2d.ts +3 -3
- package/src/lib/primitives/geometry/Stadium2d.ts +3 -3
- package/src/lib/test/currentToolIdMask.test.ts +1 -1
- package/src/lib/test/user.test.ts +1 -1
- package/src/lib/utils/areShapesContentEqual.ts +4 -0
- package/src/lib/utils/debug-flags.ts +7 -2
- package/src/lib/utils/dom.ts +4 -4
- package/src/lib/utils/nearestMultiple.ts +13 -0
- package/src/lib/utils/rotation.ts +8 -6
- package/src/lib/utils/sync/LocalIndexedDb.test.ts +1 -1
- package/src/lib/utils/sync/TLLocalSyncClient.test.ts +1 -1
- package/src/version.ts +3 -3
package/dist-cjs/index.d.ts
CHANGED
|
@@ -1,16 +1,12 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
|
|
3
3
|
import { Atom } from '@tldraw/state';
|
|
4
|
-
import { atom } from '@tldraw/state';
|
|
5
4
|
import { BoxModel } from '@tldraw/tlschema';
|
|
6
5
|
import { ComponentType } from 'react';
|
|
7
6
|
import { Computed } from '@tldraw/state';
|
|
8
|
-
import { computed } from '@tldraw/state';
|
|
9
7
|
import { Dispatch } from 'react';
|
|
10
8
|
import { Editor as Editor_2 } from '@tiptap/core';
|
|
11
9
|
import { EditorProviderProps } from '@tiptap/react';
|
|
12
|
-
import { EffectScheduler } from '@tldraw/state';
|
|
13
|
-
import { EMPTY_ARRAY } from '@tldraw/state';
|
|
14
10
|
import EventEmitter from 'eventemitter3';
|
|
15
11
|
import { ExoticComponent } from 'react';
|
|
16
12
|
import { HistoryEntry } from '@tldraw/store';
|
|
@@ -23,7 +19,6 @@ import { NamedExoticComponent } from 'react';
|
|
|
23
19
|
import { Node as Node_2 } from '@tiptap/pm/model';
|
|
24
20
|
import { PerformanceTracker } from '@tldraw/utils';
|
|
25
21
|
import { PointerEventHandler } from 'react';
|
|
26
|
-
import { react } from '@tldraw/state';
|
|
27
22
|
import { default as React_2 } from 'react';
|
|
28
23
|
import * as React_3 from 'react';
|
|
29
24
|
import { ReactElement } from 'react';
|
|
@@ -82,18 +77,8 @@ import { TLStoreSnapshot } from '@tldraw/tlschema';
|
|
|
82
77
|
import { TLUnknownBinding } from '@tldraw/tlschema';
|
|
83
78
|
import { TLUnknownShape } from '@tldraw/tlschema';
|
|
84
79
|
import { TLVideoAsset } from '@tldraw/tlschema';
|
|
85
|
-
import { track } from '@tldraw/state-react';
|
|
86
|
-
import { transact } from '@tldraw/state';
|
|
87
|
-
import { transaction } from '@tldraw/state';
|
|
88
80
|
import { UnknownRecord } from '@tldraw/store';
|
|
89
|
-
import { useAtom } from '@tldraw/state-react';
|
|
90
|
-
import { useComputed } from '@tldraw/state-react';
|
|
91
|
-
import { useQuickReactor } from '@tldraw/state-react';
|
|
92
|
-
import { useReactor } from '@tldraw/state-react';
|
|
93
|
-
import { useStateTracking } from '@tldraw/state-react';
|
|
94
|
-
import { useValue } from '@tldraw/state-react';
|
|
95
81
|
import { VecModel } from '@tldraw/tlschema';
|
|
96
|
-
import { whyAmIRunning } from '@tldraw/state';
|
|
97
82
|
|
|
98
83
|
/* Excluded from this release type: activeElementShouldCaptureKeys */
|
|
99
84
|
|
|
@@ -136,8 +121,8 @@ export declare class Arc2d extends Geometry2d {
|
|
|
136
121
|
start: Vec;
|
|
137
122
|
sweepFlag: number;
|
|
138
123
|
});
|
|
139
|
-
nearestPoint(point:
|
|
140
|
-
hitTestLineSegment(A:
|
|
124
|
+
nearestPoint(point: VecLike): Vec;
|
|
125
|
+
hitTestLineSegment(A: VecLike, B: VecLike): boolean;
|
|
141
126
|
getVertices(): Vec[];
|
|
142
127
|
getSvgPathData(first?: boolean): string;
|
|
143
128
|
getLength(): number;
|
|
@@ -153,10 +138,6 @@ export declare class Arc2d extends Geometry2d {
|
|
|
153
138
|
*/
|
|
154
139
|
export declare function areAnglesCompatible(a: number, b: number): boolean;
|
|
155
140
|
|
|
156
|
-
export { Atom }
|
|
157
|
-
|
|
158
|
-
export { atom }
|
|
159
|
-
|
|
160
141
|
/** @public */
|
|
161
142
|
export declare function average(A: VecLike, B: VecLike): string;
|
|
162
143
|
|
|
@@ -477,12 +458,16 @@ export declare class Box {
|
|
|
477
458
|
set point(val: Vec);
|
|
478
459
|
get minX(): number;
|
|
479
460
|
set minX(n: number);
|
|
461
|
+
get left(): number;
|
|
480
462
|
get midX(): number;
|
|
481
463
|
get maxX(): number;
|
|
464
|
+
get right(): number;
|
|
482
465
|
get minY(): number;
|
|
483
466
|
set minY(n: number);
|
|
467
|
+
get top(): number;
|
|
484
468
|
get midY(): number;
|
|
485
469
|
get maxY(): number;
|
|
470
|
+
get bottom(): number;
|
|
486
471
|
get width(): number;
|
|
487
472
|
set width(n: number);
|
|
488
473
|
get height(): number;
|
|
@@ -578,8 +563,8 @@ export declare class Circle2d extends Geometry2d {
|
|
|
578
563
|
});
|
|
579
564
|
getBounds(): Box;
|
|
580
565
|
getVertices(): Vec[];
|
|
581
|
-
nearestPoint(point:
|
|
582
|
-
hitTestLineSegment(A:
|
|
566
|
+
nearestPoint(point: VecLike): Vec;
|
|
567
|
+
hitTestLineSegment(A: VecLike, B: VecLike, distance?: number): boolean;
|
|
583
568
|
getSvgPathData(): string;
|
|
584
569
|
}
|
|
585
570
|
|
|
@@ -656,8 +641,6 @@ export declare class ClickManager {
|
|
|
656
641
|
*/
|
|
657
642
|
export declare function clockwiseAngleDist(a0: number, a1: number): number;
|
|
658
643
|
|
|
659
|
-
export { computed }
|
|
660
|
-
|
|
661
644
|
/**
|
|
662
645
|
* @public
|
|
663
646
|
* @react
|
|
@@ -745,10 +728,10 @@ export declare class CubicBezier2d extends Polyline2d {
|
|
|
745
728
|
});
|
|
746
729
|
getVertices(): Vec[];
|
|
747
730
|
midPoint(): Vec;
|
|
748
|
-
nearestPoint(A:
|
|
731
|
+
nearestPoint(A: VecLike): Vec;
|
|
749
732
|
getSvgPathData(first?: boolean): string;
|
|
750
733
|
static GetAtT(segment: CubicBezier2d, t: number): Vec;
|
|
751
|
-
getLength(precision?: number): number;
|
|
734
|
+
getLength(filters?: Geometry2dFilters, precision?: number): number;
|
|
752
735
|
}
|
|
753
736
|
|
|
754
737
|
/** @public */
|
|
@@ -761,8 +744,8 @@ export declare class CubicSpline2d extends Geometry2d {
|
|
|
761
744
|
get segments(): CubicBezier2d[];
|
|
762
745
|
getLength(): number;
|
|
763
746
|
getVertices(): Vec[];
|
|
764
|
-
nearestPoint(A:
|
|
765
|
-
hitTestLineSegment(A:
|
|
747
|
+
nearestPoint(A: VecLike): Vec;
|
|
748
|
+
hitTestLineSegment(A: VecLike, B: VecLike): boolean;
|
|
766
749
|
getSvgPathData(): string;
|
|
767
750
|
}
|
|
768
751
|
|
|
@@ -956,8 +939,8 @@ export declare class Edge2d extends Geometry2d {
|
|
|
956
939
|
getLength(): number;
|
|
957
940
|
midPoint(): Vec;
|
|
958
941
|
getVertices(): Vec[];
|
|
959
|
-
nearestPoint(point:
|
|
960
|
-
hitTestLineSegment(A:
|
|
942
|
+
nearestPoint(point: VecLike): Vec;
|
|
943
|
+
hitTestLineSegment(A: VecLike, B: VecLike, distance?: number): boolean;
|
|
961
944
|
getSvgPathData(first?: boolean): string;
|
|
962
945
|
}
|
|
963
946
|
|
|
@@ -3994,8 +3977,6 @@ export declare class Editor extends EventEmitter<TLEventMap> {
|
|
|
3994
3977
|
/** @public */
|
|
3995
3978
|
export declare const EditorContext: React_2.Context<Editor | null>;
|
|
3996
3979
|
|
|
3997
|
-
export { EffectScheduler }
|
|
3998
|
-
|
|
3999
3980
|
/** @public */
|
|
4000
3981
|
export declare class Ellipse2d extends Geometry2d {
|
|
4001
3982
|
config: Omit<Geometry2dOptions, 'isClosed'> & {
|
|
@@ -4011,15 +3992,13 @@ export declare class Ellipse2d extends Geometry2d {
|
|
|
4011
3992
|
_edges?: Edge2d[];
|
|
4012
3993
|
get edges(): Edge2d[];
|
|
4013
3994
|
getVertices(): any[];
|
|
4014
|
-
nearestPoint(A:
|
|
4015
|
-
hitTestLineSegment(A:
|
|
3995
|
+
nearestPoint(A: VecLike): Vec;
|
|
3996
|
+
hitTestLineSegment(A: VecLike, B: VecLike): boolean;
|
|
4016
3997
|
getBounds(): Box;
|
|
4017
3998
|
getLength(): number;
|
|
4018
3999
|
getSvgPathData(first?: boolean): string;
|
|
4019
4000
|
}
|
|
4020
4001
|
|
|
4021
|
-
export { EMPTY_ARRAY }
|
|
4022
|
-
|
|
4023
4002
|
/** @public */
|
|
4024
4003
|
export declare class ErrorBoundary extends React_3.Component<React_3.PropsWithRef<React_3.PropsWithChildren<TLErrorBoundaryProps>>, {
|
|
4025
4004
|
error: Error | null;
|
|
@@ -4087,18 +4066,27 @@ export declare abstract class Geometry2d {
|
|
|
4087
4066
|
constructor(opts: Geometry2dOptions);
|
|
4088
4067
|
isExcludedByFilter(filters?: Geometry2dFilters): boolean;
|
|
4089
4068
|
abstract getVertices(filters: Geometry2dFilters): Vec[];
|
|
4090
|
-
abstract nearestPoint(point:
|
|
4091
|
-
hitTestPoint(point:
|
|
4092
|
-
distanceToPoint(point:
|
|
4093
|
-
distanceToLineSegment(A:
|
|
4094
|
-
hitTestLineSegment(A:
|
|
4069
|
+
abstract nearestPoint(point: VecLike, _filters?: Geometry2dFilters): Vec;
|
|
4070
|
+
hitTestPoint(point: VecLike, margin?: number, hitInside?: boolean, _filters?: Geometry2dFilters): boolean;
|
|
4071
|
+
distanceToPoint(point: VecLike, hitInside?: boolean, filters?: Geometry2dFilters): number;
|
|
4072
|
+
distanceToLineSegment(A: VecLike, B: VecLike, filters?: Geometry2dFilters): number;
|
|
4073
|
+
hitTestLineSegment(A: VecLike, B: VecLike, distance?: number, filters?: Geometry2dFilters): boolean;
|
|
4095
4074
|
intersectLineSegment(A: VecLike, B: VecLike, _filters?: Geometry2dFilters): VecLike[];
|
|
4096
4075
|
intersectCircle(center: VecLike, radius: number, _filters?: Geometry2dFilters): VecLike[];
|
|
4097
4076
|
intersectPolygon(polygon: VecLike[], _filters?: Geometry2dFilters): VecLike[];
|
|
4098
4077
|
intersectPolyline(polyline: VecLike[], _filters?: Geometry2dFilters): VecLike[];
|
|
4078
|
+
/**
|
|
4079
|
+
* Find a point along the edge of the geometry that is a fraction `t` along the entire way round.
|
|
4080
|
+
*/
|
|
4081
|
+
interpolateAlongEdge(t: number, _filters?: Geometry2dFilters): Vec;
|
|
4082
|
+
/**
|
|
4083
|
+
* Take `point`, find the closest point to it on the edge of the geometry, and return how far
|
|
4084
|
+
* along the edge it is as a fraction of the total length.
|
|
4085
|
+
*/
|
|
4086
|
+
uninterpolateAlongEdge(point: VecLike, _filters?: Geometry2dFilters): number;
|
|
4099
4087
|
/** @deprecated Iterate the vertices instead. */
|
|
4100
|
-
nearestPointOnLineSegment(A:
|
|
4101
|
-
isPointInBounds(point:
|
|
4088
|
+
nearestPointOnLineSegment(A: VecLike, B: VecLike): Vec;
|
|
4089
|
+
isPointInBounds(point: VecLike, margin?: number): boolean;
|
|
4102
4090
|
transform(transform: MatModel, opts?: TransformedGeometry2dOptions): Geometry2d;
|
|
4103
4091
|
private _vertices;
|
|
4104
4092
|
get vertices(): Vec[];
|
|
@@ -4112,7 +4100,7 @@ export declare abstract class Geometry2d {
|
|
|
4112
4100
|
toSimpleSvgPath(): string;
|
|
4113
4101
|
private _length?;
|
|
4114
4102
|
get length(): number;
|
|
4115
|
-
getLength(): number;
|
|
4103
|
+
getLength(_filters?: Geometry2dFilters): number;
|
|
4116
4104
|
abstract getSvgPathData(first: boolean): string;
|
|
4117
4105
|
}
|
|
4118
4106
|
|
|
@@ -4180,15 +4168,15 @@ export declare function getFreshUserPreferences(): TLUserPreferences;
|
|
|
4180
4168
|
export declare function getIncrementedName(name: string, others: string[]): string;
|
|
4181
4169
|
|
|
4182
4170
|
/** @public */
|
|
4183
|
-
export declare function getPerfectDashProps(totalLength: number, strokeWidth: number, opts?:
|
|
4184
|
-
closed
|
|
4185
|
-
end
|
|
4186
|
-
forceSolid
|
|
4187
|
-
lengthRatio
|
|
4188
|
-
snap
|
|
4189
|
-
start
|
|
4190
|
-
style
|
|
4191
|
-
}
|
|
4171
|
+
export declare function getPerfectDashProps(totalLength: number, strokeWidth: number, opts?: {
|
|
4172
|
+
closed?: boolean;
|
|
4173
|
+
end?: 'none' | 'outset' | 'skip';
|
|
4174
|
+
forceSolid?: boolean;
|
|
4175
|
+
lengthRatio?: number;
|
|
4176
|
+
snap?: number;
|
|
4177
|
+
start?: 'none' | 'outset' | 'skip';
|
|
4178
|
+
style?: TLDefaultDashStyle;
|
|
4179
|
+
}): {
|
|
4192
4180
|
strokeDasharray: string;
|
|
4193
4181
|
strokeDashoffset: string;
|
|
4194
4182
|
};
|
|
@@ -4275,18 +4263,20 @@ export declare class Group2d extends Geometry2d {
|
|
|
4275
4263
|
children: Geometry2d[];
|
|
4276
4264
|
});
|
|
4277
4265
|
getVertices(filters: Geometry2dFilters): Vec[];
|
|
4278
|
-
nearestPoint(point:
|
|
4279
|
-
distanceToPoint(point:
|
|
4280
|
-
hitTestPoint(point:
|
|
4281
|
-
hitTestLineSegment(A:
|
|
4266
|
+
nearestPoint(point: VecLike, filters?: Geometry2dFilters): Vec;
|
|
4267
|
+
distanceToPoint(point: VecLike, hitInside?: boolean, filters?: Geometry2dFilters): number;
|
|
4268
|
+
hitTestPoint(point: VecLike, margin: number, hitInside: boolean, filters?: Geometry2dFilters): boolean;
|
|
4269
|
+
hitTestLineSegment(A: VecLike, B: VecLike, zoom: number, filters?: Geometry2dFilters): boolean;
|
|
4282
4270
|
intersectLineSegment(A: VecLike, B: VecLike, filters?: Geometry2dFilters): VecLike[];
|
|
4283
4271
|
intersectCircle(center: VecLike, radius: number, filters?: Geometry2dFilters): VecLike[];
|
|
4284
4272
|
intersectPolygon(polygon: VecLike[], filters?: Geometry2dFilters): VecLike[];
|
|
4285
4273
|
intersectPolyline(polyline: VecLike[], filters?: Geometry2dFilters): VecLike[];
|
|
4274
|
+
interpolateAlongEdge(t: number, filters?: Geometry2dFilters): Vec;
|
|
4275
|
+
uninterpolateAlongEdge(point: VecLike, filters?: Geometry2dFilters): number;
|
|
4286
4276
|
transform(transform: Mat): Geometry2d;
|
|
4287
4277
|
getArea(): number;
|
|
4288
4278
|
toSimpleSvgPath(): string;
|
|
4289
|
-
getLength(): number;
|
|
4279
|
+
getLength(filters?: Geometry2dFilters): number;
|
|
4290
4280
|
getSvgPathData(): string;
|
|
4291
4281
|
}
|
|
4292
4282
|
|
|
@@ -4591,8 +4581,8 @@ export declare class Mat {
|
|
|
4591
4581
|
static Identity(): Mat;
|
|
4592
4582
|
static Translate(x: number, y: number): Mat;
|
|
4593
4583
|
static Rotate(r: number, cx?: number, cy?: number): Mat;
|
|
4594
|
-
static Scale(x: number, y: number):
|
|
4595
|
-
static Scale(x: number, y: number, cx: number, cy: number):
|
|
4584
|
+
static Scale(x: number, y: number): Mat;
|
|
4585
|
+
static Scale(x: number, y: number, cx: number, cy: number): Mat;
|
|
4596
4586
|
static Multiply(m1: MatModel, m2: MatModel): MatModel;
|
|
4597
4587
|
static Inverse(m: MatModel): MatModel;
|
|
4598
4588
|
static Absolute(m: MatLike): MatModel;
|
|
@@ -4687,7 +4677,7 @@ export declare class Point2d extends Geometry2d {
|
|
|
4687
4677
|
});
|
|
4688
4678
|
getVertices(): Vec[];
|
|
4689
4679
|
nearestPoint(): Vec;
|
|
4690
|
-
hitTestLineSegment(A:
|
|
4680
|
+
hitTestLineSegment(A: VecLike, B: VecLike, margin: number): boolean;
|
|
4691
4681
|
getSvgPathData(): string;
|
|
4692
4682
|
}
|
|
4693
4683
|
|
|
@@ -4732,8 +4722,8 @@ export declare class Polyline2d extends Geometry2d {
|
|
|
4732
4722
|
get segments(): Edge2d[];
|
|
4733
4723
|
getLength(): number;
|
|
4734
4724
|
getVertices(): Vec[];
|
|
4735
|
-
nearestPoint(A:
|
|
4736
|
-
hitTestLineSegment(A:
|
|
4725
|
+
nearestPoint(A: VecLike): Vec;
|
|
4726
|
+
hitTestLineSegment(A: VecLike, B: VecLike, distance?: number): boolean;
|
|
4737
4727
|
getSvgPathData(): string;
|
|
4738
4728
|
}
|
|
4739
4729
|
|
|
@@ -4774,8 +4764,6 @@ export declare function radiansToDegrees(r: number): number;
|
|
|
4774
4764
|
*/
|
|
4775
4765
|
export declare function rangeIntersection(a0: number, a1: number, b0: number, b1: number): [number, number] | null;
|
|
4776
4766
|
|
|
4777
|
-
export { react }
|
|
4778
|
-
|
|
4779
4767
|
/**
|
|
4780
4768
|
* A map of {@link @tldraw/tlschema#StyleProp | StyleProps} to their {@link SharedStyle} values. See
|
|
4781
4769
|
* {@link Editor.getSharedStyles}.
|
|
@@ -5419,10 +5407,20 @@ export declare abstract class ShapeUtil<Shape extends TLUnknownShape = TLUnknown
|
|
|
5419
5407
|
* A callback called when a shape's edge is double clicked.
|
|
5420
5408
|
*
|
|
5421
5409
|
* @param shape - The shape.
|
|
5410
|
+
* @param info - Info about the edge.
|
|
5422
5411
|
* @returns A change to apply to the shape, or void.
|
|
5423
5412
|
* @public
|
|
5424
5413
|
*/
|
|
5425
|
-
onDoubleClickEdge?(shape: Shape): TLShapePartial<Shape> | void;
|
|
5414
|
+
onDoubleClickEdge?(shape: Shape, info: TLClickEventInfo): TLShapePartial<Shape> | void;
|
|
5415
|
+
/**
|
|
5416
|
+
* A callback called when a shape's corner is double clicked.
|
|
5417
|
+
*
|
|
5418
|
+
* @param shape - The shape.
|
|
5419
|
+
* @param info - Info about the corner.
|
|
5420
|
+
* @returns A change to apply to the shape, or void.
|
|
5421
|
+
* @public
|
|
5422
|
+
*/
|
|
5423
|
+
onDoubleClickCorner?(shape: Shape, info: TLClickEventInfo): TLShapePartial<Shape> | void;
|
|
5426
5424
|
/**
|
|
5427
5425
|
* A callback called when a shape is double clicked.
|
|
5428
5426
|
*
|
|
@@ -5479,8 +5477,6 @@ export declare function shortAngleDist(a0: number, a1: number): number;
|
|
|
5479
5477
|
/** @public */
|
|
5480
5478
|
export declare const SIDES: readonly ["top", "right", "bottom", "left"];
|
|
5481
5479
|
|
|
5482
|
-
export { Signal }
|
|
5483
|
-
|
|
5484
5480
|
/** @public */
|
|
5485
5481
|
export declare const SIN: (x: number) => number;
|
|
5486
5482
|
|
|
@@ -5532,8 +5528,8 @@ export declare class Stadium2d extends Geometry2d {
|
|
|
5532
5528
|
height: number;
|
|
5533
5529
|
width: number;
|
|
5534
5530
|
});
|
|
5535
|
-
nearestPoint(A:
|
|
5536
|
-
hitTestLineSegment(A:
|
|
5531
|
+
nearestPoint(A: VecLike): Vec;
|
|
5532
|
+
hitTestLineSegment(A: VecLike, B: VecLike): boolean;
|
|
5537
5533
|
getVertices(): Vec[];
|
|
5538
5534
|
getBounds(): Box;
|
|
5539
5535
|
getLength(): number;
|
|
@@ -5737,6 +5733,7 @@ export declare class TextManager {
|
|
|
5737
5733
|
fontWeight: string;
|
|
5738
5734
|
lineHeight: number;
|
|
5739
5735
|
minWidth?: null | number;
|
|
5736
|
+
otherStyles?: Record<string, string>;
|
|
5740
5737
|
padding: string;
|
|
5741
5738
|
}): BoxModel & {
|
|
5742
5739
|
scrollWidth: number;
|
|
@@ -6294,34 +6291,39 @@ export declare interface TldrawOptions {
|
|
|
6294
6291
|
* nonce to use in the editor's styles.
|
|
6295
6292
|
*/
|
|
6296
6293
|
readonly nonce: string | undefined;
|
|
6294
|
+
/**
|
|
6295
|
+
* Branding name of the app, currently only used for adding aria-label for the application.
|
|
6296
|
+
*/
|
|
6297
|
+
readonly branding?: string;
|
|
6297
6298
|
}
|
|
6298
6299
|
|
|
6299
6300
|
/** @public */
|
|
6300
6301
|
export declare interface TLEditorComponents {
|
|
6301
6302
|
Background?: ComponentType | null;
|
|
6302
|
-
SvgDefs?: ComponentType | null;
|
|
6303
6303
|
Brush?: ComponentType<TLBrushProps> | null;
|
|
6304
|
-
ZoomBrush?: ComponentType<TLBrushProps> | null;
|
|
6305
|
-
ShapeIndicators?: ComponentType | null;
|
|
6306
|
-
ShapeIndicator?: ComponentType<TLShapeIndicatorProps> | null;
|
|
6307
|
-
Cursor?: ComponentType<TLCursorProps> | null;
|
|
6308
6304
|
Canvas?: ComponentType<TLCanvasComponentProps> | null;
|
|
6309
6305
|
CollaboratorBrush?: ComponentType<TLBrushProps> | null;
|
|
6310
6306
|
CollaboratorCursor?: ComponentType<TLCursorProps> | null;
|
|
6311
6307
|
CollaboratorHint?: ComponentType<TLCollaboratorHintProps> | null;
|
|
6308
|
+
CollaboratorScribble?: ComponentType<TLScribbleProps> | null;
|
|
6312
6309
|
CollaboratorShapeIndicator?: ComponentType<TLShapeIndicatorProps> | null;
|
|
6310
|
+
Cursor?: ComponentType<TLCursorProps> | null;
|
|
6313
6311
|
Grid?: ComponentType<TLGridProps> | null;
|
|
6314
|
-
Scribble?: ComponentType<TLScribbleProps> | null;
|
|
6315
|
-
CollaboratorScribble?: ComponentType<TLScribbleProps> | null;
|
|
6316
|
-
SnapIndicator?: ComponentType<TLSnapIndicatorProps> | null;
|
|
6317
|
-
Handles?: ComponentType<TLHandlesProps> | null;
|
|
6318
6312
|
Handle?: ComponentType<TLHandleProps> | null;
|
|
6319
|
-
|
|
6320
|
-
SelectionForeground?: ComponentType<TLSelectionForegroundProps> | null;
|
|
6321
|
-
SelectionBackground?: ComponentType<TLSelectionBackgroundProps> | null;
|
|
6322
|
-
OnTheCanvas?: ComponentType | null;
|
|
6313
|
+
Handles?: ComponentType<TLHandlesProps> | null;
|
|
6323
6314
|
InFrontOfTheCanvas?: ComponentType | null;
|
|
6324
6315
|
LoadingScreen?: ComponentType | null;
|
|
6316
|
+
OnTheCanvas?: ComponentType | null;
|
|
6317
|
+
Overlays?: ComponentType | null;
|
|
6318
|
+
Scribble?: ComponentType<TLScribbleProps> | null;
|
|
6319
|
+
SelectionBackground?: ComponentType<TLSelectionBackgroundProps> | null;
|
|
6320
|
+
SelectionForeground?: ComponentType<TLSelectionForegroundProps> | null;
|
|
6321
|
+
ShapeIndicator?: ComponentType<TLShapeIndicatorProps> | null;
|
|
6322
|
+
ShapeIndicators?: ComponentType | null;
|
|
6323
|
+
SnapIndicator?: ComponentType<TLSnapIndicatorProps> | null;
|
|
6324
|
+
Spinner?: ComponentType | null;
|
|
6325
|
+
SvgDefs?: ComponentType | null;
|
|
6326
|
+
ZoomBrush?: ComponentType<TLBrushProps> | null;
|
|
6325
6327
|
ErrorFallback?: TLErrorFallbackComponent;
|
|
6326
6328
|
ShapeErrorFallback?: TLShapeErrorFallbackComponent;
|
|
6327
6329
|
ShapeIndicatorErrorFallback?: TLShapeIndicatorErrorFallbackComponent;
|
|
@@ -6770,6 +6772,7 @@ export declare interface TLMeasureTextSpanOpts {
|
|
|
6770
6772
|
fontStyle: string;
|
|
6771
6773
|
lineHeight: number;
|
|
6772
6774
|
textAlign: TLDefaultHorizontalAlignStyle;
|
|
6775
|
+
otherStyles?: Record<string, string>;
|
|
6773
6776
|
}
|
|
6774
6777
|
|
|
6775
6778
|
/** @public */
|
|
@@ -7407,12 +7410,6 @@ export declare function toFixed(v: number): number;
|
|
|
7407
7410
|
*/
|
|
7408
7411
|
export declare function toPrecision(n: number, precision?: number): number;
|
|
7409
7412
|
|
|
7410
|
-
export { track }
|
|
7411
|
-
|
|
7412
|
-
export { transact }
|
|
7413
|
-
|
|
7414
|
-
export { transaction }
|
|
7415
|
-
|
|
7416
7413
|
/** @public */
|
|
7417
7414
|
export declare class TransformedGeometry2d extends Geometry2d {
|
|
7418
7415
|
private readonly geometry;
|
|
@@ -7421,13 +7418,13 @@ export declare class TransformedGeometry2d extends Geometry2d {
|
|
|
7421
7418
|
private readonly decomposed;
|
|
7422
7419
|
constructor(geometry: Geometry2d, matrix: MatModel, opts?: TransformedGeometry2dOptions);
|
|
7423
7420
|
getVertices(filters: Geometry2dFilters): Vec[];
|
|
7424
|
-
nearestPoint(point:
|
|
7425
|
-
hitTestPoint(point:
|
|
7426
|
-
distanceToPoint(point:
|
|
7427
|
-
distanceToLineSegment(A:
|
|
7428
|
-
hitTestLineSegment(A:
|
|
7429
|
-
intersectLineSegment(A: VecLike, B: VecLike, filters?: Geometry2dFilters):
|
|
7430
|
-
intersectCircle(center: VecLike, radius: number, filters?: Geometry2dFilters):
|
|
7421
|
+
nearestPoint(point: VecLike, filters?: Geometry2dFilters): Vec;
|
|
7422
|
+
hitTestPoint(point: VecLike, margin?: number, hitInside?: boolean, filters?: Geometry2dFilters): boolean;
|
|
7423
|
+
distanceToPoint(point: VecLike, hitInside?: boolean, filters?: Geometry2dFilters): number;
|
|
7424
|
+
distanceToLineSegment(A: VecLike, B: VecLike, filters?: Geometry2dFilters): number;
|
|
7425
|
+
hitTestLineSegment(A: VecLike, B: VecLike, distance?: number, filters?: Geometry2dFilters): boolean;
|
|
7426
|
+
intersectLineSegment(A: VecLike, B: VecLike, filters?: Geometry2dFilters): Vec[];
|
|
7427
|
+
intersectCircle(center: VecLike, radius: number, filters?: Geometry2dFilters): Vec[];
|
|
7431
7428
|
intersectPolygon(polygon: VecLike[], filters?: Geometry2dFilters): VecLike[];
|
|
7432
7429
|
intersectPolyline(polyline: VecLike[], filters?: Geometry2dFilters): VecLike[];
|
|
7433
7430
|
transform(transform: MatModel, opts?: TransformedGeometry2dOptions): Geometry2d;
|
|
@@ -7454,10 +7451,6 @@ export declare function uniq<T>(array: {
|
|
|
7454
7451
|
readonly length: number;
|
|
7455
7452
|
} | null | undefined): T[];
|
|
7456
7453
|
|
|
7457
|
-
export { useAtom }
|
|
7458
|
-
|
|
7459
|
-
export { useComputed }
|
|
7460
|
-
|
|
7461
7454
|
/** @public */
|
|
7462
7455
|
export declare function useContainer(): HTMLElement;
|
|
7463
7456
|
|
|
@@ -7527,12 +7520,9 @@ export declare function usePeerIds(): string[];
|
|
|
7527
7520
|
*/
|
|
7528
7521
|
export declare function usePresence(userId: string): null | TLInstancePresence;
|
|
7529
7522
|
|
|
7530
|
-
export { useQuickReactor }
|
|
7531
|
-
|
|
7532
7523
|
/* Excluded from this release type: USER_COLORS */
|
|
7533
7524
|
|
|
7534
7525
|
/* Excluded from this release type: useReactiveEvent */
|
|
7535
|
-
export { useReactor }
|
|
7536
7526
|
|
|
7537
7527
|
/* Excluded from this release type: useRefState */
|
|
7538
7528
|
|
|
@@ -7595,8 +7585,6 @@ export declare function useSelectionEvents(handle: TLSelectionHandle): {
|
|
|
7595
7585
|
*/
|
|
7596
7586
|
export declare function useSharedSafeId(id: string): SafeId;
|
|
7597
7587
|
|
|
7598
|
-
export { useStateTracking }
|
|
7599
|
-
|
|
7600
7588
|
/**
|
|
7601
7589
|
* Returns the current SVG export context. Returns null if the component isn't being rendered for an
|
|
7602
7590
|
* SVG export.
|
|
@@ -7630,8 +7618,6 @@ export declare function useTransform(ref: React.RefObject<HTMLElement | SVGEleme
|
|
|
7630
7618
|
*/
|
|
7631
7619
|
export declare function useUniqueSafeId(suffix?: string): SafeId;
|
|
7632
7620
|
|
|
7633
|
-
export { useValue }
|
|
7634
|
-
|
|
7635
7621
|
/** @public */
|
|
7636
7622
|
export declare function useViewportHeight(): number;
|
|
7637
7623
|
|
|
@@ -7703,6 +7689,7 @@ export declare class Vec {
|
|
|
7703
7689
|
static Per(A: VecLike): Vec;
|
|
7704
7690
|
static Abs(A: VecLike): Vec;
|
|
7705
7691
|
static Dist(A: VecLike, B: VecLike): number;
|
|
7692
|
+
static ManhattanDist(A: VecLike, B: VecLike): number;
|
|
7706
7693
|
static DistMin(A: VecLike, B: VecLike, n: number): boolean;
|
|
7707
7694
|
static Dist2(A: VecLike, B: VecLike): number;
|
|
7708
7695
|
/**
|
|
@@ -7750,7 +7737,15 @@ export declare class Vec {
|
|
|
7750
7737
|
static Cast(A: VecLike): Vec;
|
|
7751
7738
|
static Slope(A: VecLike, B: VecLike): number;
|
|
7752
7739
|
static IsNaN(A: VecLike): boolean;
|
|
7740
|
+
/**
|
|
7741
|
+
* Get the angle from position A to position B.
|
|
7742
|
+
*/
|
|
7753
7743
|
static Angle(A: VecLike, B: VecLike): number;
|
|
7744
|
+
/**
|
|
7745
|
+
* Get the angle between vector A and vector B. This will return the smallest angle between the
|
|
7746
|
+
* two vectors, between -π and π. The sign indicates direction of angle.
|
|
7747
|
+
*/
|
|
7748
|
+
static AngleBetween(A: VecLike, B: VecLike): number;
|
|
7754
7749
|
/**
|
|
7755
7750
|
* Linearly interpolate between two points.
|
|
7756
7751
|
* @param A - The first point.
|
|
@@ -7794,9 +7789,9 @@ export declare class Vec {
|
|
|
7794
7789
|
/** @public */
|
|
7795
7790
|
export declare type VecLike = Vec | VecModel;
|
|
7796
7791
|
|
|
7797
|
-
export { whyAmIRunning }
|
|
7798
|
-
|
|
7799
7792
|
|
|
7793
|
+
export * from "@tldraw/state";
|
|
7794
|
+
export * from "@tldraw/state-react";
|
|
7800
7795
|
export * from "@tldraw/store";
|
|
7801
7796
|
export * from "@tldraw/tlschema";
|
|
7802
7797
|
export * from "@tldraw/utils";
|
package/dist-cjs/index.js
CHANGED
|
@@ -50,13 +50,11 @@ __export(index_exports, {
|
|
|
50
50
|
DefaultSpinner: () => import_DefaultSpinner.DefaultSpinner,
|
|
51
51
|
DefaultSvgDefs: () => import_DefaultSvgDefs.DefaultSvgDefs,
|
|
52
52
|
EASINGS: () => import_easings.EASINGS,
|
|
53
|
-
EMPTY_ARRAY: () => import_state.EMPTY_ARRAY,
|
|
54
53
|
EVENT_NAME_MAP: () => import_event_types.EVENT_NAME_MAP,
|
|
55
54
|
Edge2d: () => import_Edge2d.Edge2d,
|
|
56
55
|
EdgeScrollManager: () => import_EdgeScrollManager.EdgeScrollManager,
|
|
57
56
|
Editor: () => import_Editor.Editor,
|
|
58
57
|
EditorContext: () => import_useEditor.EditorContext,
|
|
59
|
-
EffectScheduler: () => import_state.EffectScheduler,
|
|
60
58
|
Ellipse2d: () => import_Ellipse2d.Ellipse2d,
|
|
61
59
|
ErrorBoundary: () => import_ErrorBoundary.ErrorBoundary,
|
|
62
60
|
ErrorScreen: () => import_TldrawEditor.ErrorScreen,
|
|
@@ -105,7 +103,6 @@ __export(index_exports, {
|
|
|
105
103
|
applyRotationToSnapshotShapes: () => import_rotation.applyRotationToSnapshotShapes,
|
|
106
104
|
approximately: () => import_utils2.approximately,
|
|
107
105
|
areAnglesCompatible: () => import_utils2.areAnglesCompatible,
|
|
108
|
-
atom: () => import_state.atom,
|
|
109
106
|
average: () => import_utils2.average,
|
|
110
107
|
canonicalizeRotation: () => import_utils2.canonicalizeRotation,
|
|
111
108
|
centerOfCircleFromThreePoints: () => import_utils2.centerOfCircleFromThreePoints,
|
|
@@ -113,7 +110,6 @@ __export(index_exports, {
|
|
|
113
110
|
clampRadians: () => import_utils2.clampRadians,
|
|
114
111
|
clampToBrowserMaxCanvasSize: () => import_browserCanvasMaxSize.clampToBrowserMaxCanvasSize,
|
|
115
112
|
clockwiseAngleDist: () => import_utils2.clockwiseAngleDist,
|
|
116
|
-
computed: () => import_state.computed,
|
|
117
113
|
coreShapes: () => import_defaultShapes.coreShapes,
|
|
118
114
|
counterClockwiseAngleDist: () => import_utils2.counterClockwiseAngleDist,
|
|
119
115
|
createDeepLinkString: () => import_deepLinks.createDeepLinkString,
|
|
@@ -176,7 +172,6 @@ __export(index_exports, {
|
|
|
176
172
|
preventDefault: () => import_dom.preventDefault,
|
|
177
173
|
radiansToDegrees: () => import_utils2.radiansToDegrees,
|
|
178
174
|
rangeIntersection: () => import_utils2.rangeIntersection,
|
|
179
|
-
react: () => import_state.react,
|
|
180
175
|
refreshPage: () => import_refreshPage.refreshPage,
|
|
181
176
|
releasePointerCapture: () => import_dom.releasePointerCapture,
|
|
182
177
|
resizeBox: () => import_resizeBox.resizeBox,
|
|
@@ -197,12 +192,7 @@ __export(index_exports, {
|
|
|
197
192
|
toDomPrecision: () => import_utils2.toDomPrecision,
|
|
198
193
|
toFixed: () => import_utils2.toFixed,
|
|
199
194
|
toPrecision: () => import_utils2.toPrecision,
|
|
200
|
-
track: () => import_state_react.track,
|
|
201
|
-
transact: () => import_state.transact,
|
|
202
|
-
transaction: () => import_state.transaction,
|
|
203
195
|
uniq: () => import_uniq.uniq,
|
|
204
|
-
useAtom: () => import_state_react.useAtom,
|
|
205
|
-
useComputed: () => import_state_react.useComputed,
|
|
206
196
|
useContainer: () => import_useContainer.useContainer,
|
|
207
197
|
useContainerIfExists: () => import_useContainer.useContainerIfExists,
|
|
208
198
|
useDelaySvgExport: () => import_SvgExportContext.useDelaySvgExport,
|
|
@@ -220,25 +210,20 @@ __export(index_exports, {
|
|
|
220
210
|
usePassThroughWheelEvents: () => import_usePassThroughWheelEvents.usePassThroughWheelEvents,
|
|
221
211
|
usePeerIds: () => import_usePeerIds.usePeerIds,
|
|
222
212
|
usePresence: () => import_usePresence.usePresence,
|
|
223
|
-
useQuickReactor: () => import_state_react.useQuickReactor,
|
|
224
213
|
useReactiveEvent: () => import_useEvent.useReactiveEvent,
|
|
225
|
-
useReactor: () => import_state_react.useReactor,
|
|
226
214
|
useRefState: () => import_useRefState.useRefState,
|
|
227
215
|
useSelectionEvents: () => import_useSelectionEvents.useSelectionEvents,
|
|
228
216
|
useShallowArrayIdentity: () => import_useIdentity.useShallowArrayIdentity,
|
|
229
217
|
useShallowObjectIdentity: () => import_useIdentity.useShallowObjectIdentity,
|
|
230
218
|
useSharedSafeId: () => import_useSafeId.useSharedSafeId,
|
|
231
|
-
useStateTracking: () => import_state_react.useStateTracking,
|
|
232
219
|
useSvgExportContext: () => import_SvgExportContext.useSvgExportContext,
|
|
233
220
|
useTLSchemaFromUtils: () => import_useTLStore.useTLSchemaFromUtils,
|
|
234
221
|
useTLStore: () => import_useTLStore.useTLStore,
|
|
235
222
|
useTldrawUser: () => import_createTLUser.useTldrawUser,
|
|
236
223
|
useTransform: () => import_useTransform.useTransform,
|
|
237
224
|
useUniqueSafeId: () => import_useSafeId.useUniqueSafeId,
|
|
238
|
-
useValue: () => import_state_react.useValue,
|
|
239
225
|
useViewportHeight: () => import_useViewportHeight.useViewportHeight,
|
|
240
|
-
userTypeValidator: () => import_TLUserPreferences.userTypeValidator
|
|
241
|
-
whyAmIRunning: () => import_state.whyAmIRunning
|
|
226
|
+
userTypeValidator: () => import_TLUserPreferences.userTypeValidator
|
|
242
227
|
});
|
|
243
228
|
module.exports = __toCommonJS(index_exports);
|
|
244
229
|
var import_utils = require("@tldraw/utils");
|
|
@@ -247,11 +232,8 @@ var import_flat_map = require("core-js/stable/array/flat-map.js");
|
|
|
247
232
|
var import_flat = require("core-js/stable/array/flat.js");
|
|
248
233
|
var import_at2 = require("core-js/stable/string/at.js");
|
|
249
234
|
var import_replace_all = require("core-js/stable/string/replace-all.js");
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
var import_resizeScaled = require("./lib/editor/shapes/shared/resizeScaled");
|
|
253
|
-
var import_richText = require("./lib/utils/richText");
|
|
254
|
-
var import_LocalIndexedDb = require("./lib/utils/sync/LocalIndexedDb");
|
|
235
|
+
__reExport(index_exports, require("@tldraw/state"), module.exports);
|
|
236
|
+
__reExport(index_exports, require("@tldraw/state-react"), module.exports);
|
|
255
237
|
__reExport(index_exports, require("@tldraw/store"), module.exports);
|
|
256
238
|
__reExport(index_exports, require("@tldraw/tlschema"), module.exports);
|
|
257
239
|
__reExport(index_exports, require("@tldraw/utils"), module.exports);
|
|
@@ -302,6 +284,7 @@ var import_ShapeUtil = require("./lib/editor/shapes/ShapeUtil");
|
|
|
302
284
|
var import_GroupShapeUtil = require("./lib/editor/shapes/group/GroupShapeUtil");
|
|
303
285
|
var import_getPerfectDashProps = require("./lib/editor/shapes/shared/getPerfectDashProps");
|
|
304
286
|
var import_resizeBox = require("./lib/editor/shapes/shared/resizeBox");
|
|
287
|
+
var import_resizeScaled = require("./lib/editor/shapes/shared/resizeScaled");
|
|
305
288
|
var import_BaseBoxShapeTool = require("./lib/editor/tools/BaseBoxShapeTool/BaseBoxShapeTool");
|
|
306
289
|
var import_Pointing = require("./lib/editor/tools/BaseBoxShapeTool/children/Pointing");
|
|
307
290
|
var import_StateNode = require("./lib/editor/tools/StateNode");
|
|
@@ -366,8 +349,10 @@ var import_hardResetEditor = require("./lib/utils/hardResetEditor");
|
|
|
366
349
|
var import_keyboard = require("./lib/utils/keyboard");
|
|
367
350
|
var import_normalizeWheel = require("./lib/utils/normalizeWheel");
|
|
368
351
|
var import_refreshPage = require("./lib/utils/refreshPage");
|
|
352
|
+
var import_richText = require("./lib/utils/richText");
|
|
369
353
|
var import_rotation = require("./lib/utils/rotation");
|
|
370
354
|
var import_runtime = require("./lib/utils/runtime");
|
|
355
|
+
var import_LocalIndexedDb = require("./lib/utils/sync/LocalIndexedDb");
|
|
371
356
|
var import_hardReset = require("./lib/utils/sync/hardReset");
|
|
372
357
|
var import_uniq = require("./lib/utils/uniq");
|
|
373
358
|
var import_window_open = require("./lib/utils/window-open");
|
|
@@ -376,7 +361,7 @@ function debugEnableLicensing() {
|
|
|
376
361
|
}
|
|
377
362
|
(0, import_utils.registerTldrawLibraryVersion)(
|
|
378
363
|
"@tldraw/editor",
|
|
379
|
-
"3.13.0-canary.
|
|
364
|
+
"3.13.0-canary.4389e5975660",
|
|
380
365
|
"cjs"
|
|
381
366
|
);
|
|
382
367
|
//# sourceMappingURL=index.js.map
|