@buerli.io/react-cad 0.13.1-beta.4 → 0.13.1-beta.8.apiversion
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/PluginsWindows.d.ts +5 -2
- package/build/components/UI/CAD/hooks/useCurrentInstance.d.ts +1 -1
- package/build/components/UI/CAD/hooks/useCurrentProduct.d.ts +1 -1
- package/build/components/UI/CAD/hooks/useRoot.d.ts +1 -1
- package/build/components/UI/CAD/index.d.ts +1 -0
- package/build/components/UI/editors/BooleanEditor/BooleanEditor.d.ts +7 -0
- package/build/components/UI/editors/BooleanEditor/useBoolParam.d.ts +2 -0
- package/build/components/UI/editors/NumberEditor/NumberEditor.d.ts +10 -0
- package/build/components/UI/editors/NumberEditor/useNumParam.d.ts +4 -0
- package/build/components/UI/editors/PointEditor/PointEditor.d.ts +9 -1
- package/build/components/UI/editors/PointEditor/usePointParam.d.ts +3 -1
- package/build/components/UI/editors/RefsEditors/useModes.d.ts +6 -2
- package/build/components/UI/editors/TypeEditor/useTypeParam.d.ts +2 -0
- package/build/index.cjs.js +9231 -8521
- package/build/index.d.ts +4 -1
- package/build/index.js +20865 -20158
- package/build/plugins/Expressions/useContextMenuItems.d.ts +4 -0
- package/build/plugins/Sketch/View/graphics/TmpAngularDimension.d.ts +0 -2
- package/build/plugins/Sketch/View/graphics/primitives.d.ts +0 -14
- package/build/plugins/Sketch/View/handlers/HandlersConstructors.d.ts +2 -2
- package/build/plugins/Sketch/View/handlers/Use.d.ts +3 -0
- package/build/plugins/Sketch/View/handlers/filletHelpers.d.ts +5 -6
- package/build/plugins/Sketch/View/handlers/splitHelpers.d.ts +11 -28
- package/build/plugins/Sketch/types.d.ts +1 -6
- package/build/plugins/components/PluginForm.d.ts +12 -0
- package/build/utils/helpers.d.ts +1 -23
- package/build/utils/mateUtils.d.ts +1 -2
- package/build/utils/selection/scopes/mateSelection.d.ts +1 -1
- package/build/utils/sketchIntersectionUtils.d.ts +29 -0
- package/build/utils/sketchUtils.d.ts +173 -0
- package/package.json +4 -9
- package/build/plugins/Sketch/View/graphics/RubberBandSelection.d.ts +0 -2
- package/build/plugins/Sketch/View/handlers/UseRef.d.ts +0 -3
- package/build/plugins/Sketch/utils/getEntities.d.ts +0 -2
- package/build/plugins/Sketch/utils/getGeometryPriority.d.ts +0 -2
package/build/index.d.ts
CHANGED
|
@@ -43,6 +43,9 @@ import * as Gear from './plugins/HLConstraints/Gear';
|
|
|
43
43
|
import * as Import from './plugins/Import';
|
|
44
44
|
import * as EntityDeletion from './plugins/EntityDeletion';
|
|
45
45
|
import * as ProductManagement from './components/UI/CAD/plugins/ProductManagement';
|
|
46
|
+
import * as mateUtils from './utils/mateUtils';
|
|
47
|
+
import * as sketchUtils from './utils/sketchUtils';
|
|
48
|
+
import * as sketchIntersectionUtils from './utils/sketchIntersectionUtils';
|
|
46
49
|
import Readfile from './components/UI/Readfile';
|
|
47
50
|
import FtVisibilityController from './components/utils/FtVisibilityController';
|
|
48
51
|
import { CSysDisplay, CSysDisplayMode } from './components/graphics/CSysDisplay';
|
|
@@ -64,6 +67,6 @@ import { getMateRefIds } from './utils/getMateRefIds';
|
|
|
64
67
|
import { TreeObjScope, createTreeObjSelItem } from './utils/selection/scopes/treeObjInteraction';
|
|
65
68
|
import { MateScope } from './utils/selection/scopes/mateSelection';
|
|
66
69
|
import { CompositeCurveObj } from './components/graphics/CompositeCurveObj';
|
|
67
|
-
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, Spherical, Group, LinearPatternConstraint, CircularPatternConstraint, Gear, Readfile, FtVisibilityController, useAllObjects, useEditMode, useHasPending, useIsLoading, useIsSketchActive, useVisibleSolids, EditMode, CSysDisplayMode, PluginGeometryBounds, HoveredConstraintDisplay, WorkPointObj, WorkAxisObj, WorkPlaneObj, WorkCoordSystemObj, WorkCSysObj, HUD, SelectedMateObj, Outline, getMateRefIds, createTreeObjSelItem, TreeObjScope, MateScope, useOverrideGeometryColor, GeometryOverridesManager, Twist, CompositeCurveObj };
|
|
70
|
+
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, Spherical, Group, LinearPatternConstraint, CircularPatternConstraint, Gear, Readfile, FtVisibilityController, mateUtils, sketchUtils, sketchIntersectionUtils, useAllObjects, useEditMode, useHasPending, useIsLoading, useIsSketchActive, useVisibleSolids, EditMode, CSysDisplayMode, PluginGeometryBounds, HoveredConstraintDisplay, WorkPointObj, WorkAxisObj, WorkPlaneObj, WorkCoordSystemObj, WorkCSysObj, HUD, SelectedMateObj, Outline, getMateRefIds, createTreeObjSelItem, TreeObjScope, MateScope, useOverrideGeometryColor, GeometryOverridesManager, Twist, CompositeCurveObj, };
|
|
68
71
|
export declare type OutlineProps = OutlineProps1;
|
|
69
72
|
export * from './components/UI/CAD';
|