@buerli.io/react-cad 1.0.1 → 1.1.0-beta.7
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/build/components/UI/CAD/ThemeToggle.d.ts +2 -0
- package/build/components/UI/CAD/ToolBar/ToolBar.d.ts +2 -0
- package/build/components/UI/CAD/common/Menu.d.ts +1 -0
- package/build/components/UI/CAD/plugins/ProductManagement/Root.d.ts +1 -0
- package/build/components/UI/ThemeVars.d.ts +6 -0
- package/build/components/UI/editors/ColorEditor/ColorEditor.d.ts +1 -0
- package/build/components/UI/editors/NumberEditor/NumOrExpr.d.ts +1 -0
- package/build/components/UI/editors/RefsEditors/ChainFinder.d.ts +4 -6
- package/build/components/UI/editors/RefsEditors/MateOrientationEditor.d.ts +1 -0
- package/build/components/UI/editors/ToleranceEditor/ToleranceEditor.d.ts +1 -0
- package/build/components/UI/editors/TypeEditor/TypeEditor.d.ts +1 -0
- package/build/index.cjs.js +2502 -1602
- package/build/index.d.ts +2 -0
- package/build/index.js +2441 -1545
- package/build/plugins/Sketch/Root/Constraints/Constraints.d.ts +1 -0
- package/build/plugins/Sketch/Root/CopyPatterns.d.ts +1 -0
- package/build/plugins/Sketch/Root/Details.d.ts +1 -0
- package/build/plugins/Sketch/Root/Handlers.d.ts +1 -0
- package/build/plugins/Sketch/Root/useContextMenuItems.d.ts +2 -2
- package/build/plugins/Sketch/View/graphics/Merged/Arc.d.ts +8 -0
- package/build/plugins/Sketch/View/graphics/Merged/Circle.d.ts +1 -0
- package/build/plugins/Sketch/View/graphics/Merged/Line.d.ts +5 -0
- package/build/plugins/Sketch/View/graphics/Merged/LineGeometry.d.ts +2 -0
- package/build/plugins/Sketch/View/graphics/Merged/LineMaterial.d.ts +2 -0
- package/build/plugins/Sketch/View/graphics/Merged/MergedWrapper.d.ts +0 -10
- package/build/plugins/Sketch/View/graphics/hooks.d.ts +3 -0
- package/build/plugins/Sketch/View/graphics/transform.d.ts +4 -0
- package/build/plugins/Sketch/View/handlers/filletHelpers.d.ts +2 -0
- package/build/plugins/Sketch/types.d.ts +4 -0
- package/build/theme/themeStore.d.ts +68 -0
- package/build/utils/FileUtils.d.ts +3 -1
- package/build/utils/sketchUtils.d.ts +14 -0
- package/package.json +5 -4
|
@@ -3,12 +3,10 @@ export declare class ChainFinder {
|
|
|
3
3
|
private tree;
|
|
4
4
|
private drawingId;
|
|
5
5
|
private visited;
|
|
6
|
+
private nodes;
|
|
6
7
|
constructor(drawingId: DrawingID);
|
|
7
|
-
private
|
|
8
|
-
private
|
|
9
|
-
private
|
|
10
|
-
private findIncCurve;
|
|
11
|
-
private findIncCurves;
|
|
12
|
-
private getPointId;
|
|
8
|
+
private getPointByName;
|
|
9
|
+
private processPoint;
|
|
10
|
+
private processCurve;
|
|
13
11
|
findChained(curve: ScgObject): ScgObject[];
|
|
14
12
|
}
|