@buerli.io/react-cad 0.7.1 → 0.8.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/GeometryOverrides/GeometryOverridesManager.d.ts +5 -0
- package/build/components/graphics/GeometryOverrides/GeometryOverridesStore.d.ts +18 -0
- package/build/components/graphics/GeometryOverrides/index.d.ts +2 -0
- package/build/components/graphics/GeometryOverrides/useOverrideGeometryColor.d.ts +3 -0
- package/build/components/graphics/Outlines/AAPass.d.ts +8 -0
- package/build/components/graphics/Outlines/IDPass.d.ts +1 -0
- package/build/components/graphics/Outlines/Outline.d.ts +3 -8
- package/build/components/graphics/Outlines/OutlineEffect.d.ts +16 -14
- package/build/components/graphics/Outlines/OutlineMaterial.d.ts +2 -0
- package/build/components/graphics/Outlines/WidenPass.d.ts +17 -0
- package/build/components/graphics/SelectedMateObj.d.ts +1 -1
- package/build/components/graphics/WorkAxisObj.d.ts +1 -1
- package/build/components/graphics/WorkCSysObj.d.ts +11 -0
- package/build/components/graphics/WorkCoordSystemObj.d.ts +2 -1
- package/build/components/graphics/WorkPlaneObj.d.ts +2 -1
- package/build/components/graphics/WorkPointObj.d.ts +1 -1
- package/build/components/graphics/graphics.d.ts +6 -6
- package/build/index.cjs.js +2274 -1267
- package/build/index.d.ts +4 -1
- package/build/index.js +2250 -1247
- package/build/plugins/Sketch/View/graphics/Merged/ArcGeometry.d.ts +1 -1
- package/build/plugins/Sketch/View/graphics/hooks.d.ts +7 -2
- package/build/plugins/WorkCSys/Root.d.ts +6 -0
- package/build/plugins/WorkCSys/View.d.ts +6 -0
- package/build/plugins/WorkCSys/index.d.ts +14 -0
- package/package.json +12 -12
package/build/index.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ import * as WorkAxis from './plugins/WorkAxis';
|
|
|
22
22
|
import * as WorkPlane from './plugins/WorkPlane';
|
|
23
23
|
import * as WorkPoint from './plugins/WorkPoint';
|
|
24
24
|
import * as WorkCoordSystem from './plugins/WorkCoordSystem';
|
|
25
|
+
import * as WorkCSys from './plugins/WorkCSys';
|
|
25
26
|
import * as BoundingBoxInfo from './plugins/BoundingBoxInfo';
|
|
26
27
|
import * as Expressions from './plugins/Expressions';
|
|
27
28
|
import * as FastenedOrigin from './plugins/HLConstraints/FastenedOrigin';
|
|
@@ -44,14 +45,16 @@ import { WorkPointObj } from './components/graphics/WorkPointObj';
|
|
|
44
45
|
import { WorkAxisObj } from './components/graphics/WorkAxisObj';
|
|
45
46
|
import { WorkPlaneObj } from './components/graphics/WorkPlaneObj';
|
|
46
47
|
import { WorkCoordSystemObj } from './components/graphics/WorkCoordSystemObj';
|
|
48
|
+
import { WorkCSysObj } from './components/graphics/WorkCSysObj';
|
|
47
49
|
import { SelectedMateObj } from './components/graphics/SelectedMateObj';
|
|
48
50
|
import { HUD } from './components/graphics/HUD';
|
|
49
51
|
import { Outline, OutlineProps as OutlineProps1 } from './components/graphics/Outlines/Outline';
|
|
52
|
+
import { useOverrideGeometryColor, GeometryOverridesManager } from './components/graphics/GeometryOverrides';
|
|
50
53
|
import { useEditMode, useHasPending, useIsLoading, useIsSketchActive, EditMode } from './components/UI/CAD/hooks';
|
|
51
54
|
import { useVisibleSolids } from './components/UI/CAD/Solids/useVisibleSolids';
|
|
52
55
|
import { getMateRefIds } from './utils/getMateRefIds';
|
|
53
56
|
import { TreeObjScope } from './utils/selection/scopes/treeObjInteraction';
|
|
54
57
|
import { MateScope } from './utils/selection/scopes/mateSelection';
|
|
55
|
-
export { Boolean, Extrusion, Revolve, Box, Sphere, Cylinder, Cone, Fillet, Chamfer, Slice, SliceBySheet, LinearPattern, CircularPattern, Mirror, Translate, Rotate, TransformByCsys, Dimensions, Sketch, WorkPoint, WorkAxis, WorkPlane, WorkCoordSystem, Measure, BoundingBoxInfo, Import, EntityDeletion, ProductManagement, CSysDisplay, Expressions, FastenedOrigin, Fastened, Slider, Revolute, Cylindrical, Planar, Parallel, Readfile, FtVisibilityController, useAllObjects, useEditMode, useHasPending, useIsLoading, useIsSketchActive, useVisibleSolids, EditMode, PluginGeometryBounds, HoveredConstraintDisplay, WorkPointObj, WorkAxisObj, WorkPlaneObj, WorkCoordSystemObj, HUD, SelectedMateObj, Outline, getMateRefIds, TreeObjScope, MateScope, };
|
|
58
|
+
export { Boolean, Extrusion, Revolve, Box, Sphere, Cylinder, Cone, Fillet, Chamfer, Slice, SliceBySheet, LinearPattern, CircularPattern, Mirror, Translate, Rotate, TransformByCsys, Dimensions, Sketch, WorkPoint, WorkAxis, WorkPlane, WorkCoordSystem, WorkCSys, Measure, BoundingBoxInfo, Import, EntityDeletion, ProductManagement, CSysDisplay, Expressions, 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, };
|
|
56
59
|
export declare type OutlineProps = OutlineProps1;
|
|
57
60
|
export * from './components/UI/CAD';
|