fcs-core-viewer 0.50.0 → 0.53.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 (169) hide show
  1. package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/CreationToolsParentResolver.d.ts +3 -0
  2. package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/Index.d.ts +75 -6
  3. package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpCurveArcRadiusTwoVertices.d.ts +18 -0
  4. package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpCurveArcThreeVertices.d.ts +13 -0
  5. package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpCurveAtIntersection.d.ts +15 -0
  6. package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/{OpLineByPoints.d.ts → OpCurveByPoints.d.ts} +2 -2
  7. package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/{OpLineByXYZ.d.ts → OpCurveByXYZ.d.ts} +2 -2
  8. package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpCurveCircleCenterVector.d.ts +15 -0
  9. package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpCurveCircleThreeVertices.d.ts +13 -0
  10. package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpExtractAndBuild.d.ts +16 -0
  11. package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpFaceByRevolute.d.ts +15 -0
  12. package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPointAtCOG.d.ts +14 -0
  13. package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPointAtCenter.d.ts +14 -0
  14. package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPointAtIntersection.d.ts +15 -0
  15. package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPointByInterpolation.d.ts +1 -0
  16. package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPointByParameters.d.ts +18 -0
  17. package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPointByXYZ.d.ts +1 -0
  18. package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPointOnVertex.d.ts +1 -0
  19. package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPrimitivesBox.d.ts +15 -0
  20. package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPrimitivesCone.d.ts +15 -0
  21. package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPrimitivesCylinder.d.ts +14 -0
  22. package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPrimitivesDisc.d.ts +14 -0
  23. package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPrimitivesRectangle.d.ts +15 -0
  24. package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPrimitivesSphere.d.ts +13 -0
  25. package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpPrimitivesTorus.d.ts +14 -0
  26. package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpSolidByBoundary.d.ts +13 -0
  27. package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpSolidByExtrusion.d.ts +16 -0
  28. package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpSolidByLoft.d.ts +13 -0
  29. package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpSolidByRevolute.d.ts +15 -0
  30. package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/OpSolidBySweep.d.ts +14 -0
  31. package/fcs-core-editor@types/Editor3D/Operations/CAD/Index.d.ts +57 -4
  32. package/fcs-core-editor@types/Editor3D/Operations/CAD/InspectionTools/OpMeasureDistance.d.ts +2 -1
  33. package/fcs-core-editor@types/Editor3D/Operations/CAD/TransformationTools/Index.d.ts +9 -0
  34. package/fcs-core-editor@types/Editor3D/Operations/CAD/TransformationTools/OpMirrorByFace.d.ts +19 -0
  35. package/fcs-core-editor@types/Editor3D/Operations/CAD/TransformationTools/OpMirrorByLine.d.ts +14 -0
  36. package/fcs-core-editor@types/Editor3D/Operations/CAD/TransformationTools/OpMirrorByPoint.d.ts +14 -0
  37. package/fcs-core-editor@types/Editor3D/Operations/CAD/TransformationTools/OpTranslate.d.ts +3 -6
  38. package/fcs-core-editor@types/Editor3D/Operations/Common/Exchange/Simulation.d.ts +3 -0
  39. package/fcs-core-editor@types/Editor3D/Operations/Index.d.ts +57 -4
  40. package/fcs-core-editor@types/Editor3D/Operations/OperationCollection.d.ts +38 -0
  41. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/AuxiliaryTools/CSystem/UICSystemByPoints.d.ts +0 -5
  42. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/AuxiliaryTools/Vector/UIVectorByPoints.d.ts +0 -5
  43. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Curve/UICurveArcRadiusTwoVertices.d.ts +35 -0
  44. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineArcThreeVertices.d.ts → Curve/UICurveArcThreeVertices.d.ts} +12 -12
  45. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Curve/UICurveAtIntersection.d.ts +26 -0
  46. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineAtIntersection.d.ts → Curve/UICurveByInterpolation.d.ts} +1 -6
  47. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineByOffsetXYZ.d.ts → Curve/UICurveByOffsetXYZ.d.ts} +1 -6
  48. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineByPoints.d.ts → Curve/UICurveByPoints.d.ts} +1 -6
  49. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineByXYZ.d.ts → Curve/UICurveByXYZ.d.ts} +1 -1
  50. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineChamfer.d.ts → Curve/UICurveChamfer.d.ts} +1 -6
  51. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Curve/UICurveCircleCenterVector.d.ts +30 -0
  52. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineByInterpolation.d.ts → Curve/UICurveCircleThreeVertices.d.ts} +12 -12
  53. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineFillet.d.ts → Curve/UICurveFillet.d.ts} +1 -6
  54. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/{TransformationTools/Mirror/UIMirrorByVector.d.ts → CreationTools/Curve/UICurveTangentToLines.d.ts} +1 -8
  55. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildBuildShell.d.ts +1 -5
  56. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildBuildSolid.d.ts +3 -8
  57. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildBuildWire.d.ts +1 -5
  58. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildExtractFace.d.ts +0 -5
  59. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildExtractLine.d.ts +0 -5
  60. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildExtractPoint.d.ts +0 -5
  61. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildExtractShell.d.ts +0 -5
  62. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildExtractSolid.d.ts +0 -5
  63. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildExtractWire.d.ts +0 -5
  64. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByEdges.d.ts +0 -5
  65. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByExtension.d.ts +0 -5
  66. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByExtrusion.d.ts +0 -10
  67. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByFilling.d.ts +0 -5
  68. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByOffset.d.ts +0 -5
  69. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByReconstruction.d.ts +0 -5
  70. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByRevolute.d.ts +12 -41
  71. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceBySweep.d.ts +0 -10
  72. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceBySweepbiNormal.d.ts +0 -15
  73. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceMidsurface.d.ts +0 -5
  74. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFacebyLoft.d.ts +0 -15
  75. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Index.d.ts +29 -45
  76. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Point/UIPointAtCOG.d.ts +40 -0
  77. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Point/UIPointAtCenter.d.ts +9 -21
  78. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Point/UIPointAtIntersection.d.ts +16 -15
  79. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Point/UIPointByInterpolation.d.ts +0 -8
  80. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Point/UIPointByParameters.d.ts +14 -11
  81. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Point/UIPointOnVertex.d.ts +0 -5
  82. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesBox.d.ts +12 -29
  83. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesCone.d.ts +12 -29
  84. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesCylinder.d.ts +10 -29
  85. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesDisc.d.ts +10 -29
  86. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesRectangle.d.ts +12 -29
  87. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesSphere.d.ts +8 -29
  88. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesTorus.d.ts +10 -29
  89. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Solid/UISolidByBoundary.d.ts +9 -29
  90. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Solid/UISolidByExtrusion.d.ts +15 -28
  91. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Solid/UISolidByLoft.d.ts +9 -29
  92. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Solid/UISolidByRevolute.d.ts +12 -28
  93. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Solid/UISolidBySweep.d.ts +10 -29
  94. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/EditingTools/Delete/UIDeleteShape.d.ts +0 -5
  95. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/EditingTools/UISplitFace.d.ts +0 -26
  96. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/InspectionTools/UICheckNormals.d.ts +0 -5
  97. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/InspectionTools/UIMeasureDistance.d.ts +1 -8
  98. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/InspectionTools/UIPointCoordinates.d.ts +0 -5
  99. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Index.d.ts +6 -6
  100. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Location/UILocationByCoordinateTransformation.d.ts +0 -7
  101. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Mirror/UIMirrorByFace.d.ts +41 -0
  102. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Mirror/UIMirrorByLine.d.ts +41 -0
  103. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Mirror/UIMirrorByPoint.d.ts +41 -0
  104. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Project/UIProjectOnFace.d.ts +0 -16
  105. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Project/UIProjectOnLine.d.ts +0 -10
  106. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Rotate/UIRotateByVectorAndAngle.d.ts +0 -9
  107. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Scale/UIScaleByXYZ.d.ts +0 -9
  108. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Translate/UITranslate.d.ts +0 -62
  109. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Translate/UITranslateByVector.d.ts +15 -39
  110. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Translate/UITranslateByVectorAndLength.d.ts +16 -40
  111. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIBeam.d.ts +0 -1
  112. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIConcentratedLoad.d.ts +0 -1
  113. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIContactPair.d.ts +0 -1
  114. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UICustomMaterial.d.ts +0 -1
  115. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIDashpot.d.ts +0 -1
  116. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIDynamicHarmonic.d.ts +0 -1
  117. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIDynamicImplicit.d.ts +0 -1
  118. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UILinearStatic.d.ts +0 -1
  119. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIMass.d.ts +0 -1
  120. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIMembrane.d.ts +11 -0
  121. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIModal.d.ts +0 -1
  122. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIMotionConstraint.d.ts +0 -1
  123. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UINonlinearStatic.d.ts +0 -1
  124. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIOutputControl.d.ts +0 -1
  125. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIShell.d.ts +11 -0
  126. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UISolid.d.ts +2 -2
  127. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UISpring.d.ts +0 -1
  128. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_0D_1D/Advanced/UIMeshLine.d.ts +0 -5
  129. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_0D_1D/Basic/UIRigidCoupling.d.ts +0 -7
  130. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_0D_1D/Manual/UICreateNode.d.ts +0 -14
  131. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_0D_1D/Manual/UIDistributingCoupling.d.ts +0 -8
  132. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_0D_1D/Manual/UIKinematicCoupling.d.ts +0 -8
  133. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_2D/Advanced/UIMeshFace.d.ts +0 -5
  134. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_2D/Advanced/UIMeshPatch.d.ts +0 -5
  135. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_2D/Advanced/UIRemesh.d.ts +0 -5
  136. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_2D/Basic/UIBoundary2D.d.ts +0 -5
  137. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_2D/Basic/UIExtrude.d.ts +0 -9
  138. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_2D/Manual/UICreateElement.d.ts +0 -5
  139. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_3D/Advanced/UIMeshVolume.d.ts +0 -5
  140. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/EditingTools/Merge/UIMergeByElements.d.ts +0 -5
  141. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/EditingTools/Merge/UIMergeByNodes.d.ts +0 -7
  142. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/InspectionTools/UICheckNormals.d.ts +0 -5
  143. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/InspectionTools/UIFreeBorders.d.ts +0 -5
  144. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/OptionsMenu/Operations/RunSimulation/RunSimulationOperation.d.ts +19 -1
  145. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/Topbar/Operations/FindByIdOperation.d.ts +1 -1
  146. package/fcs-core-editor@types/Viewer3D/Common/Diagnostics/StatusBar.d.ts +6 -0
  147. package/fcs-core-editor@types/Viewer3D/DataStorage/ModelData/Index.d.ts +5 -5
  148. package/fcs-core-editor@types/Viewer3D/DataStorage/ModelData/ModelData.d.ts +1 -1
  149. package/fcs-core-editor@types/Viewer3D/DataStorage/ModelData/Shapes/Geometry/MainshapeTypes/{TopoLine.d.ts → TopoCurve.d.ts} +1 -1
  150. package/fcs-core-editor@types/Viewer3D/DataStorage/SelectionData.d.ts +4 -0
  151. package/fcs-core-editor@types/Viewer3D/Loader/GEOMLoader/{LineLoader.d.ts → CurveLoader.d.ts} +3 -3
  152. package/fcs-core-editor@types/Viewer3D/Loader/GEOMLoader/GeomLoader.d.ts +1 -1
  153. package/fcs-core-editor@types/Viewer3D/SelectionTools/SelectionControls/SelectionControls.d.ts +2 -2
  154. package/fcs-core-editor@types/Viewer3D/SelectionTools/SelectionHelpers.d.ts +25 -1
  155. package/fcs-core-editor@types/Viewer3D/UserInterface/UIComponents/BuildingBlocks/OperationPanelComponents/EntityButton.d.ts +6 -0
  156. package/fcs-core-editor@types/Viewer3D/UserInterface/UIComponents/BuildingBlocks/OperationPanelComponents/ModeSelector.d.ts +20 -3
  157. package/fcs-core-editor@types/Viewer3D/UserInterface/UIComponents/StatusBar/LogMessageOperation.d.ts +2 -1
  158. package/fcs-core-editor@types/Viewer3D/ViewerCommands/Index.d.ts +4 -0
  159. package/fcs-core-editor@types/Viewer3D/ViewerCommands/Query/FindNodeElement.d.ts +22 -0
  160. package/fcs-core-editor@types/Viewer3D/ViewerCommands/Query/Index.d.ts +2 -0
  161. package/fcs-core-editor@types/Viewer3D/ViewerCommands/Visualization/Transparency.d.ts +1 -1
  162. package/fcs-core-editor@types/Viewer3D/ViewerEntities/VisibleEntities/Tooltip.d.ts +14 -0
  163. package/package.json +5 -3
  164. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Line/UILineArcCenterVector.d.ts +0 -54
  165. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Line/UILineCircleCenterVector.d.ts +0 -55
  166. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Line/UILineCircleThreeVertices.d.ts +0 -41
  167. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Line/UILineTangentToLines.d.ts +0 -52
  168. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Mirror/UIMirrorByPlane.d.ts +0 -23
  169. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Translate/UITranslateByDXDYXZ.d.ts +0 -41
@@ -0,0 +1,40 @@
1
+ import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComponents/BuildingBlocks/MainMenuComponents/Operation";
2
+ type OnPreviewHandler = (input: {}) => Promise<void>;
3
+ type OnAcceptHandler = (input: {}) => Promise<boolean>;
4
+ type OnRejectHandler = () => Promise<void>;
5
+ export declare class PointAtCOG extends Operation {
6
+ private entityDropDownMenu;
7
+ private readonly onPreviewHandler;
8
+ private readonly onAcceptHandler;
9
+ private readonly onRejectHandler;
10
+ private readonly buttonsContainer;
11
+ private selectionData;
12
+ constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onRejectHandler?: OnRejectHandler);
13
+ private setEnabledEntity;
14
+ private setActiveButton;
15
+ /**
16
+ * Add entity button
17
+ */
18
+ private addEntityButton;
19
+ /**
20
+ * Add action buttons (-> Preview, Accept, Reject)
21
+ */
22
+ private addActionButtons;
23
+ /**
24
+ * Builds the input object from current UI state
25
+ */
26
+ private buildInput;
27
+ private onPreview;
28
+ private onAccept;
29
+ private onReject;
30
+ unselect(): void;
31
+ /**
32
+ * Initializes uiComponents on opening the operationUI
33
+ */
34
+ init(): void;
35
+ /**
36
+ * Resets the gui elements to default on closing the operationUI
37
+ */
38
+ reset(): void;
39
+ }
40
+ export {};
@@ -1,37 +1,25 @@
1
1
  import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComponents/BuildingBlocks/MainMenuComponents/Operation";
2
- type OnPreviewHandler = (entityUIDs: number[]) => void;
3
- type OnAcceptHandler = (data: {}) => void;
4
- type OnRejectHandler = (entityUIDs: number[]) => void;
2
+ type OnPreviewHandler = (input: {}) => Promise<void>;
3
+ type OnAcceptHandler = (input: {}) => Promise<boolean>;
4
+ type OnRejectHandler = () => Promise<void>;
5
5
  export declare class PointAtCenter extends Operation {
6
6
  private entityDropDownMenu;
7
7
  private readonly onPreviewHandler;
8
8
  private readonly onAcceptHandler;
9
9
  private readonly onRejectHandler;
10
10
  private readonly buttonsContainer;
11
- private availableEntities;
11
+ private selectionData;
12
12
  constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onRejectHandler?: OnRejectHandler);
13
13
  private setEnabledEntity;
14
14
  private setActiveButton;
15
- /**
16
- * Add entity button
17
- */
18
15
  private addEntityButton;
19
- /**
20
- * Create dropdown list for entityButton
21
- */
22
- private createDropdownListItems;
23
- /**
24
- * Add action buttons (-> Preview, Accept, Reject)
25
- */
26
16
  private addActionButtons;
27
- /**
28
- * Initializes uiComponents on opening the operationUI
29
- */
17
+ private buildInput;
18
+ private onPreview;
19
+ private onAccept;
20
+ private onReject;
21
+ unselect(): void;
30
22
  init(): void;
31
- /**
32
- * Resets the gui elements (fields, entity buttons, dropdown buttons ... to default)
33
- */
34
23
  reset(): void;
35
- private onAccept;
36
24
  }
37
25
  export {};
@@ -1,40 +1,41 @@
1
1
  import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComponents/BuildingBlocks/MainMenuComponents/Operation";
2
- type OnPreviewHandler = (entityUIDs: number[]) => void;
3
- type OnAcceptHandler = (data: {}) => void;
4
- type OnRejectHandler = (entityUIDs: number[]) => void;
2
+ type OnPreviewHandler = (input: {}) => Promise<void>;
3
+ type OnAcceptHandler = (input: {}) => Promise<boolean>;
4
+ type OnRejectHandler = () => Promise<void>;
5
5
  export declare class PointAtIntersection extends Operation {
6
- private entityDropDownMenu;
6
+ private entityDropDownMenu_1;
7
+ private entityDropDownMenu_2;
7
8
  private readonly onPreviewHandler;
8
9
  private readonly onAcceptHandler;
9
10
  private readonly onRejectHandler;
10
11
  private readonly buttonsContainer;
11
- private availableEntities;
12
+ private selectionData;
12
13
  constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onRejectHandler?: OnRejectHandler);
13
14
  private setEnabledEntity;
14
15
  private setActiveButton;
15
16
  /**
16
- * Add entity button
17
+ * Add entity buttons
17
18
  */
18
- private addEntityButton;
19
+ private addEntityButtons;
19
20
  /**
20
21
  * Add action buttons (-> Preview, Accept, Reject)
21
22
  */
22
23
  private addActionButtons;
23
24
  /**
24
- * Resets the gui elements (fields, entity buttons, dropdown buttons ... to default)
25
+ * Builds the input object from current UI state
25
26
  */
26
- reset(): void;
27
+ private buildInput;
28
+ private onPreview;
29
+ private onAccept;
30
+ private onReject;
31
+ unselect(): void;
27
32
  /**
28
33
  * Initializes uiComponents on opening the operationUI
29
34
  */
30
35
  init(): void;
31
36
  /**
32
- * Create dropdown list for entityButton
33
- */
34
- private createDropdownListItems;
35
- /**
36
- * Extracts the selected entities from dict 'selected' and starts the attached task
37
+ * Resets the gui elements to default on closing the operationUI
37
38
  */
38
- private onAccept;
39
+ reset(): void;
39
40
  }
40
41
  export {};
@@ -12,8 +12,6 @@ export declare class PointByInterpolation extends Operation {
12
12
  private readonly onRejectHandler;
13
13
  private readonly buttonsContainer;
14
14
  private N;
15
- private availableEntities_1;
16
- private availableEntities_2;
17
15
  private modeOptions;
18
16
  private dynamicComponents;
19
17
  private selectionData;
@@ -24,7 +22,6 @@ export declare class PointByInterpolation extends Operation {
24
22
  constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onRejectHandler?: OnRejectHandler);
25
23
  private setEnabledEntity;
26
24
  private setActiveButton;
27
- private changeMode;
28
25
  /**
29
26
  * Add dropdown list
30
27
  */
@@ -33,11 +30,6 @@ export declare class PointByInterpolation extends Operation {
33
30
  * Add entity button
34
31
  */
35
32
  private buttons;
36
- /**
37
- * Create dropdown list for entityButton
38
- */
39
- private createDropdownListItems_1;
40
- private createDropdownListItems_2;
41
33
  /**
42
34
  * Add input field
43
35
  */
@@ -1,7 +1,7 @@
1
1
  import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComponents/BuildingBlocks/MainMenuComponents/Operation";
2
- type OnPreviewHandler = (entityUIDs: number[]) => void;
3
- type OnAcceptHandler = (data: {}) => void;
4
- type OnRejectHandler = (entityUIDs: number[]) => void;
2
+ type OnPreviewHandler = (input: {}) => Promise<void>;
3
+ type OnAcceptHandler = (input: {}) => Promise<boolean>;
4
+ type OnRejectHandler = () => Promise<void>;
5
5
  export declare class PointByParameters extends Operation {
6
6
  private entityDropDownMenu;
7
7
  private readonly onPreviewHandler;
@@ -9,39 +9,42 @@ export declare class PointByParameters extends Operation {
9
9
  private readonly onRejectHandler;
10
10
  private readonly buttonsContainer;
11
11
  private readonly inputsContainer;
12
- private availableEntities;
13
12
  private u;
14
13
  private v;
15
14
  private uInput;
16
15
  private vInput;
17
16
  private entity;
17
+ private selectionData;
18
18
  constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onRejectHandler?: OnRejectHandler);
19
19
  private setEnabledEntity;
20
20
  private setActiveButton;
21
21
  private initHiddenInputs;
22
+ /**
23
+ * Show/hide U and V input fields based on selected entity type
24
+ */
25
+ private updateFields;
22
26
  /**
23
27
  * Add entity button
24
28
  */
25
29
  private addEntityButton;
26
- private addFields;
27
30
  /**
28
31
  * Add action buttons (-> Preview, Accept, Reject)
29
32
  */
30
33
  private addActionButtons;
31
34
  /**
32
- * Create dropdown list for entityButton
33
- */
34
- private createDropdownListItems;
35
- /**
36
- * Extracts the selected entities from dict 'selected' and starts the attached task
35
+ * Builds the input object from current UI state
37
36
  */
37
+ private buildInput;
38
+ private onPreview;
38
39
  private onAccept;
40
+ private onReject;
41
+ unselect(): void;
39
42
  /**
40
43
  * Initializes uiComponents on opening the operationUI
41
44
  */
42
45
  init(): void;
43
46
  /**
44
- * Resets the gui elements (fields, entity buttons, dropdown buttons ... to default)
47
+ * Resets the gui elements to default on closing the operationUI
45
48
  */
46
49
  reset(): void;
47
50
  }
@@ -8,7 +8,6 @@ export declare class PointOnVertex extends Operation {
8
8
  private readonly onAcceptHandler;
9
9
  private readonly onRejectHandler;
10
10
  private readonly buttonsContainer;
11
- private availableEntities;
12
11
  private selectionData;
13
12
  constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onRejectHandler?: OnRejectHandler);
14
13
  private setEnabledEntity;
@@ -17,10 +16,6 @@ export declare class PointOnVertex extends Operation {
17
16
  * Add entity button
18
17
  */
19
18
  private addEntityButton;
20
- /**
21
- * Create dropdown list for entityButton
22
- */
23
- private createDropdownListItems;
24
19
  /**
25
20
  * Add action buttons (-> Preview, Accept, Reject)
26
21
  */
@@ -1,42 +1,25 @@
1
1
  import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComponents/BuildingBlocks/MainMenuComponents/Operation";
2
- type OnPreviewHandler = (entityUIDs: number[]) => void;
3
- type OnAcceptHandler = (data: {}) => void;
4
- type OnRejectHandler = (entityUIDs: number[]) => void;
2
+ type OnPreviewHandler = (input: {}) => Promise<void>;
3
+ type OnAcceptHandler = (input: {}) => Promise<boolean>;
4
+ type OnRejectHandler = () => Promise<void>;
5
5
  export declare class PrimitivesBox extends Operation {
6
- private entityDropDownMenu;
6
+ private dx;
7
+ private dy;
8
+ private dz;
9
+ private dxInput;
10
+ private dyInput;
11
+ private dzInput;
7
12
  private readonly onPreviewHandler;
8
13
  private readonly onAcceptHandler;
9
14
  private readonly onRejectHandler;
10
15
  private readonly buttonsContainer;
11
16
  private readonly inputsContainer;
12
- private availableEntities;
13
- private entity;
14
17
  constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
15
- private setEnabledEntity;
16
- private setActiveButton;
17
- /**
18
- * Add entity button
19
- */
20
- private addEntityButton;
21
- /**
22
- * Add action buttons (-> Preview, Accept, Reject)
23
- */
24
- private addActionButtons;
25
- /**
26
- * Create dropdown list for entityButton
27
- */
28
- private createDropdownListItems;
29
- /**
30
- * Extracts the selected entities from dict 'selected' and starts the attached task
31
- */
18
+ private buildInput;
19
+ private onPreview;
32
20
  private onAccept;
33
- /**
34
- * Initializes uiComponents on opening the operationUI
35
- */
21
+ private onReject;
36
22
  init(): void;
37
- /**
38
- * Resets the gui elements (fields, entity buttons, dropdown buttons ... to default)
39
- */
40
23
  reset(): void;
41
24
  }
42
25
  export {};
@@ -1,42 +1,25 @@
1
1
  import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComponents/BuildingBlocks/MainMenuComponents/Operation";
2
- type OnPreviewHandler = (entityUIDs: number[]) => void;
3
- type OnAcceptHandler = (data: {}) => void;
4
- type OnRejectHandler = (entityUIDs: number[]) => void;
2
+ type OnPreviewHandler = (input: {}) => Promise<void>;
3
+ type OnAcceptHandler = (input: {}) => Promise<boolean>;
4
+ type OnRejectHandler = () => Promise<void>;
5
5
  export declare class PrimitivesCone extends Operation {
6
- private entityDropDownMenu;
6
+ private r1;
7
+ private r2;
8
+ private h;
9
+ private r1Input;
10
+ private r2Input;
11
+ private hInput;
7
12
  private readonly onPreviewHandler;
8
13
  private readonly onAcceptHandler;
9
14
  private readonly onRejectHandler;
10
15
  private readonly buttonsContainer;
11
16
  private readonly inputsContainer;
12
- private availableEntities;
13
- private entity;
14
17
  constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
15
- private setEnabledEntity;
16
- private setActiveButton;
17
- /**
18
- * Add entity button
19
- */
20
- private addEntityButton;
21
- /**
22
- * Add action buttons (-> Preview, Accept, Reject)
23
- */
24
- private addActionButtons;
25
- /**
26
- * Create dropdown list for entityButton
27
- */
28
- private createDropdownListItems;
29
- /**
30
- * Extracts the selected entities from dict 'selected' and starts the attached task
31
- */
18
+ private buildInput;
19
+ private onPreview;
32
20
  private onAccept;
33
- /**
34
- * Initializes uiComponents on opening the operationUI
35
- */
21
+ private onReject;
36
22
  init(): void;
37
- /**
38
- * Resets the gui elements (fields, entity buttons, dropdown buttons ... to default)
39
- */
40
23
  reset(): void;
41
24
  }
42
25
  export {};
@@ -1,42 +1,23 @@
1
1
  import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComponents/BuildingBlocks/MainMenuComponents/Operation";
2
- type OnPreviewHandler = (entityUIDs: number[]) => void;
3
- type OnAcceptHandler = (data: {}) => void;
4
- type OnRejectHandler = (entityUIDs: number[]) => void;
2
+ type OnPreviewHandler = (input: {}) => Promise<void>;
3
+ type OnAcceptHandler = (input: {}) => Promise<boolean>;
4
+ type OnRejectHandler = () => Promise<void>;
5
5
  export declare class PrimitivesCylinder extends Operation {
6
- private entityDropDownMenu;
6
+ private r;
7
+ private h;
8
+ private rInput;
9
+ private hInput;
7
10
  private readonly onPreviewHandler;
8
11
  private readonly onAcceptHandler;
9
12
  private readonly onRejectHandler;
10
13
  private readonly buttonsContainer;
11
14
  private readonly inputsContainer;
12
- private availableEntities;
13
- private entity;
14
15
  constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
15
- private setEnabledEntity;
16
- private setActiveButton;
17
- /**
18
- * Add entity button
19
- */
20
- private addEntityButton;
21
- /**
22
- * Add action buttons (-> Preview, Accept, Reject)
23
- */
24
- private addActionButtons;
25
- /**
26
- * Create dropdown list for entityButton
27
- */
28
- private createDropdownListItems;
29
- /**
30
- * Extracts the selected entities from dict 'selected' and starts the attached task
31
- */
16
+ private buildInput;
17
+ private onPreview;
32
18
  private onAccept;
33
- /**
34
- * Initializes uiComponents on opening the operationUI
35
- */
19
+ private onReject;
36
20
  init(): void;
37
- /**
38
- * Resets the gui elements (fields, entity buttons, dropdown buttons ... to default)
39
- */
40
21
  reset(): void;
41
22
  }
42
23
  export {};
@@ -1,42 +1,23 @@
1
1
  import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComponents/BuildingBlocks/MainMenuComponents/Operation";
2
- type OnPreviewHandler = (entityUIDs: number[]) => void;
3
- type OnAcceptHandler = (data: {}) => void;
4
- type OnRejectHandler = (entityUIDs: number[]) => void;
2
+ type OnPreviewHandler = (input: {}) => Promise<void>;
3
+ type OnAcceptHandler = (input: {}) => Promise<boolean>;
4
+ type OnRejectHandler = () => Promise<void>;
5
5
  export declare class PrimitivesDisc extends Operation {
6
- private entityDropDownMenu;
6
+ private r;
7
+ private orientation;
8
+ private rInput;
9
+ private orientationDropdown;
7
10
  private readonly onPreviewHandler;
8
11
  private readonly onAcceptHandler;
9
12
  private readonly onRejectHandler;
10
13
  private readonly buttonsContainer;
11
14
  private readonly inputsContainer;
12
- private availableEntities;
13
- private entity;
14
15
  constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
15
- private setEnabledEntity;
16
- private setActiveButton;
17
- /**
18
- * Add entity button
19
- */
20
- private addEntityButton;
21
- /**
22
- * Add action buttons (-> Preview, Accept, Reject)
23
- */
24
- private addActionButtons;
25
- /**
26
- * Create dropdown list for entityButton
27
- */
28
- private createDropdownListItems;
29
- /**
30
- * Extracts the selected entities from dict 'selected' and starts the attached task
31
- */
16
+ private buildInput;
17
+ private onPreview;
32
18
  private onAccept;
33
- /**
34
- * Initializes uiComponents on opening the operationUI
35
- */
19
+ private onReject;
36
20
  init(): void;
37
- /**
38
- * Resets the gui elements (fields, entity buttons, dropdown buttons ... to default)
39
- */
40
21
  reset(): void;
41
22
  }
42
23
  export {};
@@ -1,42 +1,25 @@
1
1
  import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComponents/BuildingBlocks/MainMenuComponents/Operation";
2
- type OnPreviewHandler = (entityUIDs: number[]) => void;
3
- type OnAcceptHandler = (data: {}) => void;
4
- type OnRejectHandler = (entityUIDs: number[]) => void;
2
+ type OnPreviewHandler = (input: {}) => Promise<void>;
3
+ type OnAcceptHandler = (input: {}) => Promise<boolean>;
4
+ type OnRejectHandler = () => Promise<void>;
5
5
  export declare class PrimitivesRectangle extends Operation {
6
- private entityDropDownMenu;
6
+ private h;
7
+ private w;
8
+ private orientation;
9
+ private hInput;
10
+ private wInput;
11
+ private orientationDropdown;
7
12
  private readonly onPreviewHandler;
8
13
  private readonly onAcceptHandler;
9
14
  private readonly onRejectHandler;
10
15
  private readonly buttonsContainer;
11
16
  private readonly inputsContainer;
12
- private availableEntities;
13
- private entity;
14
17
  constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
15
- private setEnabledEntity;
16
- private setActiveButton;
17
- /**
18
- * Add entity button
19
- */
20
- private addEntityButton;
21
- /**
22
- * Add action buttons (-> Preview, Accept, Reject)
23
- */
24
- private addActionButtons;
25
- /**
26
- * Create dropdown list for entityButton
27
- */
28
- private createDropdownListItems;
29
- /**
30
- * Extracts the selected entities from dict 'selected' and starts the attached task
31
- */
18
+ private buildInput;
19
+ private onPreview;
32
20
  private onAccept;
33
- /**
34
- * Initializes uiComponents on opening the operationUI
35
- */
21
+ private onReject;
36
22
  init(): void;
37
- /**
38
- * Resets the gui elements (fields, entity buttons, dropdown buttons ... to default)
39
- */
40
23
  reset(): void;
41
24
  }
42
25
  export {};
@@ -1,42 +1,21 @@
1
1
  import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComponents/BuildingBlocks/MainMenuComponents/Operation";
2
- type OnPreviewHandler = (entityUIDs: number[]) => void;
3
- type OnAcceptHandler = (data: {}) => void;
4
- type OnRejectHandler = (entityUIDs: number[]) => void;
2
+ type OnPreviewHandler = (input: {}) => Promise<void>;
3
+ type OnAcceptHandler = (input: {}) => Promise<boolean>;
4
+ type OnRejectHandler = () => Promise<void>;
5
5
  export declare class PrimitivesSphere extends Operation {
6
- private entityDropDownMenu;
6
+ private r;
7
+ private rInput;
7
8
  private readonly onPreviewHandler;
8
9
  private readonly onAcceptHandler;
9
10
  private readonly onRejectHandler;
10
11
  private readonly buttonsContainer;
11
12
  private readonly inputsContainer;
12
- private availableEntities;
13
- private entity;
14
13
  constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
15
- private setEnabledEntity;
16
- private setActiveButton;
17
- /**
18
- * Add entity button
19
- */
20
- private addEntityButton;
21
- /**
22
- * Add action buttons (-> Preview, Accept, Reject)
23
- */
24
- private addActionButtons;
25
- /**
26
- * Create dropdown list for entityButton
27
- */
28
- private createDropdownListItems;
29
- /**
30
- * Extracts the selected entities from dict 'selected' and starts the attached task
31
- */
14
+ private buildInput;
15
+ private onPreview;
32
16
  private onAccept;
33
- /**
34
- * Initializes uiComponents on opening the operationUI
35
- */
17
+ private onReject;
36
18
  init(): void;
37
- /**
38
- * Resets the gui elements (fields, entity buttons, dropdown buttons ... to default)
39
- */
40
19
  reset(): void;
41
20
  }
42
21
  export {};
@@ -1,42 +1,23 @@
1
1
  import { Operation } from "../../../../../../../../Viewer3D/UserInterface/UIComponents/BuildingBlocks/MainMenuComponents/Operation";
2
- type OnPreviewHandler = (entityUIDs: number[]) => void;
3
- type OnAcceptHandler = (data: {}) => void;
4
- type OnRejectHandler = (entityUIDs: number[]) => void;
2
+ type OnPreviewHandler = (input: {}) => Promise<void>;
3
+ type OnAcceptHandler = (input: {}) => Promise<boolean>;
4
+ type OnRejectHandler = () => Promise<void>;
5
5
  export declare class PrimitivesTorus extends Operation {
6
- private entityDropDownMenu;
6
+ private rMajor;
7
+ private rMinor;
8
+ private rMajorInput;
9
+ private rMinorInput;
7
10
  private readonly onPreviewHandler;
8
11
  private readonly onAcceptHandler;
9
12
  private readonly onRejectHandler;
10
13
  private readonly buttonsContainer;
11
14
  private readonly inputsContainer;
12
- private availableEntities;
13
- private entity;
14
15
  constructor(onPreview?: OnPreviewHandler, onAccept?: OnAcceptHandler, onReject?: OnRejectHandler);
15
- private setEnabledEntity;
16
- private setActiveButton;
17
- /**
18
- * Add entity button
19
- */
20
- private addEntityButton;
21
- /**
22
- * Add action buttons (-> Preview, Accept, Reject)
23
- */
24
- private addActionButtons;
25
- /**
26
- * Create dropdown list for entityButton
27
- */
28
- private createDropdownListItems;
29
- /**
30
- * Extracts the selected entities from dict 'selected' and starts the attached task
31
- */
16
+ private buildInput;
17
+ private onPreview;
32
18
  private onAccept;
33
- /**
34
- * Initializes uiComponents on opening the operationUI
35
- */
19
+ private onReject;
36
20
  init(): void;
37
- /**
38
- * Resets the gui elements (fields, entity buttons, dropdown buttons ... to default)
39
- */
40
21
  reset(): void;
41
22
  }
42
23
  export {};