@buerli.io/react-cad 0.2.1-beta.1 → 0.3.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.
Files changed (31) hide show
  1. package/build/components/UI/CAD/Drawing.d.ts +1 -22
  2. package/build/components/UI/CAD/ViewOptionsBar/useOptionCommands.d.ts +1 -0
  3. package/build/components/UI/CAD/index.d.ts +0 -1
  4. package/build/components/UI/editors/RefsEditors/RefEditor.d.ts +1 -0
  5. package/build/components/graphics/CSysDisplay.d.ts +1 -0
  6. package/build/components/graphics/HoveredConstraintDisplay.d.ts +1 -2
  7. package/build/components/graphics/Outlines/IDPass.d.ts +11 -0
  8. package/build/components/graphics/Outlines/Outline.d.ts +25 -0
  9. package/build/components/graphics/Outlines/OutlineEffect.d.ts +32 -0
  10. package/build/components/graphics/Outlines/OutlineMaterial.d.ts +7 -0
  11. package/build/components/graphics/SelectedMateObj.d.ts +12 -0
  12. package/build/components/graphics/WorkAxisObj.d.ts +10 -0
  13. package/build/components/graphics/WorkCoordSystemObj.d.ts +10 -0
  14. package/build/components/graphics/WorkPlaneObj.d.ts +10 -0
  15. package/build/components/graphics/WorkPointObj.d.ts +10 -0
  16. package/build/components/graphics/graphics.d.ts +7 -7
  17. package/build/components/graphics/utils/MatePathTransform.d.ts +9 -0
  18. package/build/components/graphics/utils/useCsysMatrix.d.ts +4 -0
  19. package/build/components/utils/CompValidation/ErrorBoundary.d.ts +1 -1
  20. package/build/index.cjs.js +1351 -679
  21. package/build/index.d.ts +9 -1
  22. package/build/index.js +1304 -639
  23. package/build/plugins/BoundingBoxInfo/Root.d.ts +1 -0
  24. package/build/plugins/BoundingBoxInfo/View.d.ts +1 -0
  25. package/build/plugins/Dimensions/index.d.ts +6 -6
  26. package/build/plugins/Sketch/View/graphics/hooks.d.ts +4 -0
  27. package/build/plugins/Sketch/View/handlers/HandlersConstructors.d.ts +0 -1
  28. package/build/utils/getMateRefIds.d.ts +2 -0
  29. package/build/utils/helpers.d.ts +3 -3
  30. package/build/utils/selection/filters.d.ts +0 -10
  31. package/package.json +15 -14
package/build/index.d.ts CHANGED
@@ -38,6 +38,14 @@ import FtVisibilityController from './components/utils/FtVisibilityController';
38
38
  import { CSysDisplay } from './components/graphics/CSysDisplay';
39
39
  import { useAllObjects } from './utils/useAllObjects';
40
40
  import { HoveredConstraintDisplay } from './components/graphics/HoveredConstraintDisplay';
41
+ import { WorkPointObj } from './components/graphics/WorkPointObj';
42
+ import { WorkAxisObj } from './components/graphics/WorkAxisObj';
43
+ import { WorkPlaneObj } from './components/graphics/WorkPlaneObj';
44
+ import { WorkCoordSystemObj } from './components/graphics/WorkCoordSystemObj';
45
+ import { SelectedMateObj } from './components/graphics/SelectedMateObj';
46
+ import { Outline, OutlineProps as OutlineProps1 } from './components/graphics/Outlines/Outline';
41
47
  import { useIsLoading, useHasPending } from './components/UI/CAD/hooks';
42
- 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, ProductManagement, CSysDisplay, Expressions, FastenedOrigin, Fastened, Slider, Revolute, Cylindrical, Planar, Parallel, Readfile, FtVisibilityController, useAllObjects, useIsLoading, useHasPending, HoveredConstraintDisplay, };
48
+ import { getMateRefIds } from './utils/getMateRefIds';
49
+ 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, ProductManagement, CSysDisplay, Expressions, FastenedOrigin, Fastened, Slider, Revolute, Cylindrical, Planar, Parallel, Readfile, FtVisibilityController, useAllObjects, useIsLoading, useHasPending, HoveredConstraintDisplay, WorkPointObj, WorkAxisObj, WorkPlaneObj, WorkCoordSystemObj, SelectedMateObj, Outline, getMateRefIds, };
50
+ export declare type OutlineProps = OutlineProps1;
43
51
  export * from './components/UI/CAD';