@buerli.io/react-cad 0.11.0 → 0.12.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/build/components/graphics/CompositeCurveObj.d.ts +11 -0
- package/build/index.cjs.js +1446 -923
- package/build/index.d.ts +3 -1
- package/build/index.js +1439 -918
- package/build/plugins/CompositeCurve/Root.d.ts +6 -0
- package/build/plugins/CompositeCurve/View.d.ts +6 -0
- package/build/plugins/CompositeCurve/index.d.ts +5 -0
- package/build/plugins/Extrusion/View.d.ts +6 -0
- package/build/plugins/Extrusion/index.d.ts +7 -1
- package/build/plugins/Sketch/View/graphics/IconGroups.d.ts +7 -0
- package/build/plugins/Sketch/View/graphics/Regions.d.ts +5 -0
- package/build/plugins/Sketch/View/graphics/hooks.d.ts +1 -5
- package/build/plugins/Sketch/View/handlers/HandlersConstructors.d.ts +2 -0
- package/build/plugins/Sketch/View/handlers/SSelect.d.ts +3 -0
- package/build/plugins/Sketch/description.d.ts +0 -2
- package/build/plugins/Sketch/types.d.ts +8 -7
- package/build/plugins/Sketch/utils/getEntities.d.ts +2 -0
- package/build/plugins/Sketch/utils/useSketchRegions.d.ts +2 -0
- package/build/plugins/Twist/View.d.ts +6 -0
- package/build/plugins/Twist/index.d.ts +7 -1
- package/build/utils/helpers.d.ts +2 -0
- package/build/utils/selection/filters.d.ts +1 -0
- package/package.json +6 -6
- package/build/plugins/Sketch/utils/getConstrEntities.d.ts +0 -2
package/build/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import * as Revolve from './plugins/Revolve';
|
|
|
6
6
|
import * as Box from './plugins/Box';
|
|
7
7
|
import * as Sphere from './plugins/Sphere';
|
|
8
8
|
import * as Cylinder from './plugins/Cylinder';
|
|
9
|
+
import * as CompositeCurve from './plugins/CompositeCurve';
|
|
9
10
|
import * as Cone from './plugins/Cone';
|
|
10
11
|
import * as Fillet from './plugins/Fillet';
|
|
11
12
|
import * as Chamfer from './plugins/Chamfer';
|
|
@@ -57,6 +58,7 @@ import { useVisibleSolids } from './components/UI/CAD/Solids/useVisibleSolids';
|
|
|
57
58
|
import { getMateRefIds } from './utils/getMateRefIds';
|
|
58
59
|
import { TreeObjScope } from './utils/selection/scopes/treeObjInteraction';
|
|
59
60
|
import { MateScope } from './utils/selection/scopes/mateSelection';
|
|
60
|
-
|
|
61
|
+
import { CompositeCurveObj } from './components/graphics/CompositeCurveObj';
|
|
62
|
+
export { Boolean, Extrusion, Revolve, Box, Sphere, Cylinder, Cone, Fillet, Chamfer, Slice, SliceBySheet, LinearPattern, CircularPattern, CompositeCurve, Mirror, Translate, Rotate, TransformByCsys, Dimensions, Sketch, WorkPoint, WorkAxis, WorkPlane, WorkCoordSystem, WorkCSys, Measure, BoundingBoxInfo, Import, EntityDeletion, ProductManagement, CSysDisplay, Expressions, AppearanceEditor, FastenedOrigin, Fastened, Slider, Revolute, Cylindrical, Planar, Parallel, Readfile, FtVisibilityController, useAllObjects, useEditMode, useHasPending, useIsLoading, useIsSketchActive, useVisibleSolids, EditMode, PluginGeometryBounds, HoveredConstraintDisplay, WorkPointObj, WorkAxisObj, WorkPlaneObj, WorkCoordSystemObj, WorkCSysObj, HUD, SelectedMateObj, Outline, getMateRefIds, TreeObjScope, MateScope, useOverrideGeometryColor, GeometryOverridesManager, Twist, CompositeCurveObj };
|
|
61
63
|
export declare type OutlineProps = OutlineProps1;
|
|
62
64
|
export * from './components/UI/CAD';
|