fcs-core-viewer 0.49.0 → 0.52.1

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 (160) hide show
  1. package/fcs-core-editor@types/Editor3D/Operations/CAD/CreationTools/CreationToolsParentResolver.d.ts +1 -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 +51 -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/OpTranslate.d.ts +3 -6
  34. package/fcs-core-editor@types/Editor3D/Operations/Index.d.ts +51 -4
  35. package/fcs-core-editor@types/Editor3D/Operations/OperationCollection.d.ts +35 -0
  36. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/AuxiliaryTools/CSystem/UICSystemByPoints.d.ts +0 -5
  37. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/AuxiliaryTools/Vector/UIVectorByPoints.d.ts +0 -5
  38. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Curve/UICurveArcRadiusTwoVertices.d.ts +35 -0
  39. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineArcThreeVertices.d.ts → Curve/UICurveArcThreeVertices.d.ts} +12 -12
  40. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Curve/UICurveAtIntersection.d.ts +26 -0
  41. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineAtIntersection.d.ts → Curve/UICurveByInterpolation.d.ts} +1 -6
  42. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineByOffsetXYZ.d.ts → Curve/UICurveByOffsetXYZ.d.ts} +1 -6
  43. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineByPoints.d.ts → Curve/UICurveByPoints.d.ts} +1 -6
  44. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineByXYZ.d.ts → Curve/UICurveByXYZ.d.ts} +1 -1
  45. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineChamfer.d.ts → Curve/UICurveChamfer.d.ts} +1 -6
  46. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Curve/UICurveCircleCenterVector.d.ts +30 -0
  47. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineByInterpolation.d.ts → Curve/UICurveCircleThreeVertices.d.ts} +12 -12
  48. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineFillet.d.ts → Curve/UICurveFillet.d.ts} +1 -6
  49. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/{Line/UILineTangentToLines.d.ts → Curve/UICurveTangentToLines.d.ts} +1 -11
  50. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildBuildShell.d.ts +1 -5
  51. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildBuildSolid.d.ts +3 -8
  52. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildBuildWire.d.ts +1 -5
  53. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildExtractFace.d.ts +0 -5
  54. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildExtractLine.d.ts +0 -5
  55. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildExtractPoint.d.ts +0 -5
  56. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildExtractShell.d.ts +0 -5
  57. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildExtractSolid.d.ts +0 -5
  58. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/ExtractBuild/UIExtractBuildExtractWire.d.ts +0 -5
  59. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByEdges.d.ts +0 -5
  60. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByExtension.d.ts +0 -5
  61. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByExtrusion.d.ts +0 -10
  62. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByFilling.d.ts +0 -5
  63. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByOffset.d.ts +0 -5
  64. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByReconstruction.d.ts +0 -5
  65. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceByRevolute.d.ts +12 -41
  66. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceBySweep.d.ts +0 -10
  67. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceBySweepbiNormal.d.ts +0 -15
  68. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFaceMidsurface.d.ts +0 -5
  69. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Face/UIFacebyLoft.d.ts +0 -15
  70. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Index.d.ts +29 -45
  71. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Point/UIPointAtCOG.d.ts +40 -0
  72. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Point/UIPointAtCenter.d.ts +9 -21
  73. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Point/UIPointAtIntersection.d.ts +16 -15
  74. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Point/UIPointByInterpolation.d.ts +0 -8
  75. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Point/UIPointByParameters.d.ts +14 -11
  76. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Point/UIPointOnVertex.d.ts +0 -5
  77. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesBox.d.ts +12 -29
  78. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesCone.d.ts +12 -29
  79. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesCylinder.d.ts +10 -29
  80. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesDisc.d.ts +10 -29
  81. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesRectangle.d.ts +12 -29
  82. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesSphere.d.ts +8 -29
  83. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Primitives/UIPrimitivesTorus.d.ts +10 -29
  84. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Solid/UISolidByBoundary.d.ts +9 -29
  85. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Solid/UISolidByExtrusion.d.ts +15 -28
  86. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Solid/UISolidByLoft.d.ts +9 -29
  87. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Solid/UISolidByRevolute.d.ts +12 -28
  88. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Solid/UISolidBySweep.d.ts +10 -29
  89. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/EditingTools/Delete/UIDeleteShape.d.ts +0 -5
  90. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/EditingTools/UISplitFace.d.ts +0 -26
  91. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/InspectionTools/UICheckNormals.d.ts +0 -5
  92. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/InspectionTools/UIMeasureDistance.d.ts +1 -8
  93. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/InspectionTools/UIPointCoordinates.d.ts +0 -5
  94. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Index.d.ts +0 -2
  95. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Location/UILocationByCoordinateTransformation.d.ts +0 -7
  96. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Mirror/UIMirrorByVector.d.ts +0 -7
  97. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Project/UIProjectOnFace.d.ts +0 -16
  98. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Project/UIProjectOnLine.d.ts +0 -10
  99. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Rotate/UIRotateByVectorAndAngle.d.ts +0 -9
  100. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Scale/UIScaleByXYZ.d.ts +0 -9
  101. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Translate/UITranslate.d.ts +0 -62
  102. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Translate/UITranslateByVector.d.ts +15 -39
  103. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Translate/UITranslateByVectorAndLength.d.ts +16 -40
  104. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIBeam.d.ts +0 -1
  105. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIConcentratedLoad.d.ts +0 -1
  106. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIContactPair.d.ts +0 -1
  107. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UICustomMaterial.d.ts +0 -1
  108. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIDashpot.d.ts +0 -1
  109. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIDynamicHarmonic.d.ts +0 -1
  110. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIDynamicImplicit.d.ts +0 -1
  111. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UILinearStatic.d.ts +0 -1
  112. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIMass.d.ts +0 -1
  113. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIMembrane.d.ts +11 -0
  114. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIModal.d.ts +0 -1
  115. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIMotionConstraint.d.ts +0 -1
  116. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UINonlinearStatic.d.ts +0 -1
  117. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIOutputControl.d.ts +0 -1
  118. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UIShell.d.ts +11 -0
  119. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UISolid.d.ts +2 -2
  120. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/AnalysisTools/UISpring.d.ts +0 -1
  121. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_0D_1D/Advanced/UIMeshLine.d.ts +0 -5
  122. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_0D_1D/Basic/UIRigidCoupling.d.ts +0 -7
  123. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_0D_1D/Manual/UICreateNode.d.ts +1 -15
  124. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_0D_1D/Manual/UIDistributingCoupling.d.ts +1 -9
  125. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_0D_1D/Manual/UIKinematicCoupling.d.ts +1 -9
  126. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_2D/Advanced/UIMeshFace.d.ts +0 -5
  127. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_2D/Advanced/UIMeshPatch.d.ts +0 -5
  128. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_2D/Advanced/UIRemesh.d.ts +0 -5
  129. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_2D/Basic/UIBoundary2D.d.ts +0 -5
  130. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_2D/Basic/UIExtrude.d.ts +0 -9
  131. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_2D/Manual/UICreateElement.d.ts +0 -5
  132. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/CreationTools_3D/Advanced/UIMeshVolume.d.ts +0 -5
  133. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/EditingTools/Merge/UIMergeByElements.d.ts +0 -5
  134. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/EditingTools/Merge/UIMergeByNodes.d.ts +0 -7
  135. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/InspectionTools/UICheckNormals.d.ts +0 -5
  136. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAE/InspectionTools/UIFreeBorders.d.ts +0 -5
  137. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/Topbar/Operations/FindByIdOperation.d.ts +1 -1
  138. package/fcs-core-editor@types/Viewer3D/Common/Diagnostics/StatusBar.d.ts +6 -0
  139. package/fcs-core-editor@types/Viewer3D/DataStorage/ModelData/Index.d.ts +140 -134
  140. package/fcs-core-editor@types/Viewer3D/DataStorage/ModelData/Items/Files/CSystem.d.ts +20 -0
  141. package/fcs-core-editor@types/Viewer3D/DataStorage/ModelData/Items/Files/Orientation.d.ts +20 -0
  142. package/fcs-core-editor@types/Viewer3D/DataStorage/ModelData/ModelData.d.ts +1 -1
  143. package/fcs-core-editor@types/Viewer3D/DataStorage/ModelData/Shapes/Geometry/MainshapeTypes/{TopoLine.d.ts → TopoCurve.d.ts} +1 -1
  144. package/fcs-core-editor@types/Viewer3D/DataStorage/SelectionData.d.ts +4 -0
  145. package/fcs-core-editor@types/Viewer3D/Loader/GEOMLoader/{LineLoader.d.ts → CurveLoader.d.ts} +3 -3
  146. package/fcs-core-editor@types/Viewer3D/Loader/GEOMLoader/GeomLoader.d.ts +1 -1
  147. package/fcs-core-editor@types/Viewer3D/SelectionTools/SelectionControls/SelectionControls.d.ts +2 -2
  148. package/fcs-core-editor@types/Viewer3D/UserInterface/UIComponents/BuildingBlocks/OperationPanelComponents/EntityButton.d.ts +8 -0
  149. package/fcs-core-editor@types/Viewer3D/UserInterface/UIComponents/BuildingBlocks/OperationPanelComponents/ModeSelector.d.ts +21 -3
  150. package/fcs-core-editor@types/Viewer3D/UserInterface/UIComponents/BuildingBlocks/OperationPanelComponents/SelectionInputField.d.ts +2 -0
  151. package/fcs-core-editor@types/Viewer3D/UserInterface/UIComponents/StatusBar/LogMessageOperation.d.ts +2 -1
  152. package/fcs-core-editor@types/Viewer3D/ViewerCommands/Index.d.ts +4 -0
  153. package/fcs-core-editor@types/Viewer3D/ViewerCommands/Query/FindNodeElement.d.ts +22 -0
  154. package/fcs-core-editor@types/Viewer3D/ViewerCommands/Query/Index.d.ts +2 -0
  155. package/fcs-core-editor@types/Viewer3D/ViewerCommands/Visualization/Transparency.d.ts +1 -1
  156. package/package.json +5 -3
  157. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Line/UILineArcCenterVector.d.ts +0 -54
  158. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Line/UILineCircleCenterVector.d.ts +0 -55
  159. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/CreationTools/Line/UILineCircleThreeVertices.d.ts +0 -41
  160. package/fcs-core-editor@types/Editor3D/UserInterface/UIComponents/MainMenu/Operations/CAD/TransformationTools/Translate/UITranslateByDXDYXZ.d.ts +0 -41
@@ -15,7 +15,7 @@ import * as TopoFace from './Shapes/Geometry/SubshapeTypes/TopoFace';
15
15
  import * as TopoEdge from './Shapes/Geometry/SubshapeTypes/TopoEdge';
16
16
  import * as TopoVertex from './Shapes/Geometry/SubshapeTypes/TopoVertex';
17
17
  import * as TopoPoint from './Shapes/Geometry/MainshapeTypes/TopoPoint';
18
- import * as TopoLine from './Shapes/Geometry/MainshapeTypes/TopoLine';
18
+ import * as TopoCurve from './Shapes/Geometry/MainshapeTypes/TopoCurve';
19
19
  import * as TopoSurface from './Shapes/Geometry/MainshapeTypes/TopoSurface';
20
20
  import * as TopoWire from './Shapes/Geometry/MainshapeTypes/TopoWire';
21
21
  import * as TopoShell from './Shapes/Geometry/MainshapeTypes/TopoShell';
@@ -40,6 +40,8 @@ import * as Hexa_8N from './Elements/ElementShapes/PermanentElementShapes/Hexa_8
40
40
  import * as GeomPart from './Items/Files/Part';
41
41
  import * as MeshPart from './Items/Files/Mesh';
42
42
  import * as Thread from './Items/Files/Thread';
43
+ import * as Orientation from './Items/Files/Orientation';
44
+ import * as CSystem from './Items/Files/CSystem';
43
45
  import * as Nodeset from './Items/Files/SetTypes/Nodeset';
44
46
  import * as Elementset from './Items/Files/SetTypes/Elementset';
45
47
  import * as LoadDefinition from './Items/Files/LoadDefinition';
@@ -267,7 +269,7 @@ export declare namespace ModelData {
267
269
  uniqueID_To_Instance: {};
268
270
  vectorVID_To_iVector: {};
269
271
  faceVID_To_iFace: {};
270
- lineVID_To_iLine: {};
272
+ curveVID_To_iCurve: {};
271
273
  edgeVID_To_iEdge: {};
272
274
  pointVID_To_iPoint: {};
273
275
  vertexVID_To_iVertex: {};
@@ -297,7 +299,7 @@ export declare namespace ModelData {
297
299
  TopoShell: typeof TopoShell.TopoShell;
298
300
  TopoWire: typeof TopoWire.TopoWire;
299
301
  TopoSurface: typeof TopoSurface.TopoSurface;
300
- TopoLine: typeof TopoLine.TopoLine;
302
+ TopoCurve: typeof TopoCurve.TopoCurve;
301
303
  TopoPoint: typeof TopoPoint.TopoPoint;
302
304
  TopoVertex: typeof TopoVertex.TopoVertex;
303
305
  TopoEdge: typeof TopoEdge.TopoEdge;
@@ -315,6 +317,8 @@ export declare namespace ModelData {
315
317
  Elementset: typeof Elementset.Elementset;
316
318
  Nodeset: typeof Nodeset.Nodeset;
317
319
  Thread: typeof Thread.Thread;
320
+ CSystem: typeof CSystem.CSystem;
321
+ Orientation: typeof Orientation.Orientation;
318
322
  MeshPart: typeof MeshPart.MeshPart;
319
323
  GeomPart: typeof GeomPart.GeomPart;
320
324
  };
@@ -341,7 +345,7 @@ export declare namespace ModelData {
341
345
  TopoEdge = 1,
342
346
  TopoVertex = 2,
343
347
  TopoPoint = 3,
344
- TopoLine = 4,
348
+ TopoCurve = 4,
345
349
  TopoSurface = 5,
346
350
  TopoWire = 6,
347
351
  TopoShell = 7,
@@ -353,105 +357,107 @@ export declare namespace ModelData {
353
357
  TopoMesh2D = 13,
354
358
  TopoMesh3D = 14,
355
359
  TopoMass = 15,
356
- GeomPart = 16,
357
- Vector = 17,
358
- CoordinateSystem = 18,
359
- Thread = 19,
360
- MeshPart = 20,
361
- Nodeset = 21,
362
- Elementset = 22,
363
- LoadDefinition = 23,
364
- MaterialDefinition = 24,
365
- PropertyDefinition = 25,
366
- ContactDefinition = 26,
367
- ConstraintDefinition = 27,
368
- AnalysisStep = 28,
369
- OutputDefinition = 29,
370
- Assembly = 30,
371
- GeometryContainer = 31,
372
- MeshContainer = 32,
373
- SystemContainer = 33,
374
- Set = 34,
375
- LoadContainer = 35,
376
- MaterialContainer = 36,
377
- PropertyContainer = 37,
378
- ContactContainer = 38,
379
- ConstraintContainer = 39,
380
- AnalysisContainer = 40,
381
- OutputContainer = 41,
382
- CollaborationContainer = 42,
383
- BoundaryCondition = 43,
384
- ConcentratedForce = 44,
385
- ConcentratedMoment = 45,
386
- Pressure = 46,
387
- Displacement = 47,
388
- Velocity = 48,
389
- Acceleration = 49,
390
- Temperature = 50,
391
- CustomMaterial = 51,
392
- GeneralSolid = 52,
393
- GeneralShell = 53,
394
- GeneralBeam = 54,
395
- Rectangle = 55,
396
- Circle = 56,
397
- GeneralBar = 57,
398
- SpringNodeToGround = 58,
399
- SpringNodeToNode = 59,
400
- SpringElementBased = 60,
401
- DashpotNodeToGround = 61,
402
- DashpotNodeToNode = 62,
403
- DashpotElementBased = 63,
404
- ConcentratedMass = 64,
405
- ArealDistributedMass = 65,
406
- LinearDistributedMass = 66,
407
- ContactPair = 67,
408
- GlobalContact = 68,
409
- TIEconstraint = 69,
410
- MPCconstraint = 70,
411
- LinearStatic = 71,
412
- NonlinearStatic = 72,
413
- LinearBuckling = 73,
414
- Modal = 74,
415
- DynamicImplicit = 75,
416
- DynamicExplicit = 76,
417
- DynamicHarmonic = 77,
418
- AtNodes = 78,
419
- AtCorners = 79,
420
- AtIntegrationPoints = 80,
421
- DisplacementComponents = 81,
422
- VelocityComponents = 82,
423
- AccelerationComponents = 83,
424
- StrainComponents = 84,
425
- StressComponents = 85,
426
- EquivalentStresses = 86,
427
- PrincipalStresses = 87,
428
- EquivalentStrains = 88,
429
- PrincipalStrains = 89,
430
- ReactionForces = 90,
431
- ElementForces = 91,
432
- TotalStrainComponents = 92,
433
- ElasticStrainComponents = 93,
434
- PlasticStrainComponents = 94,
435
- LogarithmicStrainComponents = 95,
436
- EquivalentPlasticStrain = 96,
437
- ContactPressure = 97,
438
- ContactShearStresses = 98,
439
- ContactState = 99,
440
- ContactGap = 100,
441
- ContactSlip = 101,
442
- ContactForces = 102,
443
- InternalEnergy = 103,
444
- StrainEnergy = 104,
445
- PlasticDissipation = 105,
446
- ExternalWork = 106,
447
- ContactDissipation = 107,
448
- KineticEnergy = 108,
449
- DampingEnergy = 109,
450
- ModeShapes = 110,
451
- LoadFactors = 111,
452
- Eigenfrequencies = 112,
453
- MassParticipationFactor = 113,
454
- DirectionParticipationFactor = 114
360
+ Vector = 16,
361
+ CoordinateSystem = 17,
362
+ GeomPart = 18,
363
+ Orientation = 19,
364
+ CSystem = 20,
365
+ Thread = 21,
366
+ MeshPart = 22,
367
+ Nodeset = 23,
368
+ Elementset = 24,
369
+ LoadDefinition = 25,
370
+ MaterialDefinition = 26,
371
+ PropertyDefinition = 27,
372
+ ContactDefinition = 28,
373
+ ConstraintDefinition = 29,
374
+ AnalysisStep = 30,
375
+ OutputDefinition = 31,
376
+ Assembly = 32,
377
+ GeometryContainer = 33,
378
+ MeshContainer = 34,
379
+ SystemContainer = 35,
380
+ Set = 36,
381
+ LoadContainer = 37,
382
+ MaterialContainer = 38,
383
+ PropertyContainer = 39,
384
+ ContactContainer = 40,
385
+ ConstraintContainer = 41,
386
+ AnalysisContainer = 42,
387
+ OutputContainer = 43,
388
+ CollaborationContainer = 44,
389
+ BoundaryCondition = 45,
390
+ ConcentratedForce = 46,
391
+ ConcentratedMoment = 47,
392
+ Pressure = 48,
393
+ Displacement = 49,
394
+ Velocity = 50,
395
+ Acceleration = 51,
396
+ Temperature = 52,
397
+ CustomMaterial = 53,
398
+ GeneralSolid = 54,
399
+ GeneralShell = 55,
400
+ GeneralBeam = 56,
401
+ Rectangle = 57,
402
+ Circle = 58,
403
+ GeneralBar = 59,
404
+ SpringNodeToGround = 60,
405
+ SpringNodeToNode = 61,
406
+ SpringElementBased = 62,
407
+ DashpotNodeToGround = 63,
408
+ DashpotNodeToNode = 64,
409
+ DashpotElementBased = 65,
410
+ ConcentratedMass = 66,
411
+ ArealDistributedMass = 67,
412
+ LinearDistributedMass = 68,
413
+ ContactPair = 69,
414
+ GlobalContact = 70,
415
+ TIEconstraint = 71,
416
+ MPCconstraint = 72,
417
+ LinearStatic = 73,
418
+ NonlinearStatic = 74,
419
+ LinearBuckling = 75,
420
+ Modal = 76,
421
+ DynamicImplicit = 77,
422
+ DynamicExplicit = 78,
423
+ DynamicHarmonic = 79,
424
+ AtNodes = 80,
425
+ AtCorners = 81,
426
+ AtIntegrationPoints = 82,
427
+ DisplacementComponents = 83,
428
+ VelocityComponents = 84,
429
+ AccelerationComponents = 85,
430
+ StrainComponents = 86,
431
+ StressComponents = 87,
432
+ EquivalentStresses = 88,
433
+ PrincipalStresses = 89,
434
+ EquivalentStrains = 90,
435
+ PrincipalStrains = 91,
436
+ ReactionForces = 92,
437
+ ElementForces = 93,
438
+ TotalStrainComponents = 94,
439
+ ElasticStrainComponents = 95,
440
+ PlasticStrainComponents = 96,
441
+ LogarithmicStrainComponents = 97,
442
+ EquivalentPlasticStrain = 98,
443
+ ContactPressure = 99,
444
+ ContactShearStresses = 100,
445
+ ContactState = 101,
446
+ ContactGap = 102,
447
+ ContactSlip = 103,
448
+ ContactForces = 104,
449
+ InternalEnergy = 105,
450
+ StrainEnergy = 106,
451
+ PlasticDissipation = 107,
452
+ ExternalWork = 108,
453
+ ContactDissipation = 109,
454
+ KineticEnergy = 110,
455
+ DampingEnergy = 111,
456
+ ModeShapes = 112,
457
+ LoadFactors = 113,
458
+ Eigenfrequencies = 114,
459
+ MassParticipationFactor = 115,
460
+ DirectionParticipationFactor = 116
455
461
  }
456
462
  enum elementTopologies {
457
463
  Node_1N = 15,
@@ -502,13 +508,13 @@ export declare namespace ModelData {
502
508
  1: typeof TopoEdge.TopoEdge;
503
509
  2: typeof TopoVertex.TopoVertex;
504
510
  3: typeof TopoPoint.TopoPoint;
505
- 4: typeof TopoLine.TopoLine;
511
+ 4: typeof TopoCurve.TopoCurve;
506
512
  5: typeof TopoSurface.TopoSurface;
507
513
  6: typeof TopoWire.TopoWire;
508
514
  7: typeof TopoShell.TopoShell;
509
515
  8: typeof TopoSolid.TopoSolid;
510
- 17: typeof Vector.Vector;
511
- 18: typeof CoordinateSystem.CoordinateSystem;
516
+ 16: typeof Vector.Vector;
517
+ 17: typeof CoordinateSystem.CoordinateSystem;
512
518
  9: typeof TopoElement.TopoElement;
513
519
  10: typeof TopoNode.TopoNode;
514
520
  11: typeof TopoMesh0D.TopoMesh0D;
@@ -517,35 +523,35 @@ export declare namespace ModelData {
517
523
  14: typeof TopoMesh3D.TopoMesh3D;
518
524
  };
519
525
  itemTypes: {
520
- 16: typeof GeomPart.GeomPart;
521
- 17: typeof GeomPart.GeomPart;
522
526
  18: typeof GeomPart.GeomPart;
523
- 19: typeof Thread.Thread;
524
- 20: typeof MeshPart.MeshPart;
525
- 21: typeof Nodeset.Nodeset;
526
- 22: typeof Elementset.Elementset;
527
- 23: typeof LoadDefinition.LoadDefinition;
528
- 24: typeof MaterialDefinition.MaterialDefinition;
529
- 51: typeof MaterialDefinition.MaterialDefinition;
530
- 25: typeof PropertyDefinition.PropertyDefinition;
531
- 26: typeof ContactDefinition.ContactDefinition;
532
- 27: typeof ConstraintDefinition.ConstraintDefinition;
533
- 28: typeof AnalysisStep.AnalysisStep;
534
- 29: typeof OutputDefinition.OutputDefinition;
535
- 30: typeof Assembly.Assembly;
536
- 31: typeof Geometry.Geometry;
537
- 32: typeof Mesh.Mesh;
538
- 33: typeof System.System;
539
- 34: typeof Set.Set;
540
- 35: typeof LoadContainer.Load;
541
- 36: typeof MaterialContainer.Material;
542
- 37: typeof PropertyContainer.Property;
543
- 38: typeof ContactContainer.Contact;
544
- 39: typeof ConstraintContainer.Constraint;
545
- 40: typeof AnalysisContainer.Analysis;
546
- 41: typeof OutputContainer.Output;
547
- 43: typeof LoadDefinition.LoadDefinition;
548
- 44: typeof LoadDefinition.LoadDefinition;
527
+ 19: typeof Orientation.Orientation;
528
+ 20: typeof CSystem.CSystem;
529
+ 21: typeof Thread.Thread;
530
+ 22: typeof MeshPart.MeshPart;
531
+ 23: typeof Nodeset.Nodeset;
532
+ 24: typeof Elementset.Elementset;
533
+ 25: typeof LoadDefinition.LoadDefinition;
534
+ 26: typeof MaterialDefinition.MaterialDefinition;
535
+ 53: typeof MaterialDefinition.MaterialDefinition;
536
+ 27: typeof PropertyDefinition.PropertyDefinition;
537
+ 28: typeof ContactDefinition.ContactDefinition;
538
+ 29: typeof ConstraintDefinition.ConstraintDefinition;
539
+ 30: typeof AnalysisStep.AnalysisStep;
540
+ 31: typeof OutputDefinition.OutputDefinition;
541
+ 32: typeof Assembly.Assembly;
542
+ 33: typeof Geometry.Geometry;
543
+ 34: typeof Mesh.Mesh;
544
+ 35: typeof System.System;
545
+ 36: typeof Set.Set;
546
+ 37: typeof LoadContainer.Load;
547
+ 38: typeof MaterialContainer.Material;
548
+ 39: typeof PropertyContainer.Property;
549
+ 40: typeof ContactContainer.Contact;
550
+ 41: typeof ConstraintContainer.Constraint;
551
+ 42: typeof AnalysisContainer.Analysis;
552
+ 43: typeof OutputContainer.Output;
553
+ 45: typeof LoadDefinition.LoadDefinition;
554
+ 46: typeof LoadDefinition.LoadDefinition;
549
555
  };
550
556
  };
551
557
  const dataTypesCollector: dataTypes[];
@@ -0,0 +1,20 @@
1
+ import { File } from "./File";
2
+ export declare class CSystem extends File {
3
+ static title: string;
4
+ private static csystemIDs_used;
5
+ private static csystemIDs_unused;
6
+ constructor(data: {});
7
+ private createVID;
8
+ /**
9
+ * Delete content from database and treeHTML
10
+ */
11
+ delete(): void;
12
+ /**
13
+ * Select and highlight all shapes in a file
14
+ */
15
+ select(): void;
16
+ highlight(colorData: any[]): void;
17
+ setColor(colorData: any[]): void;
18
+ setOpacity(): void;
19
+ setVisibility(): void;
20
+ }
@@ -0,0 +1,20 @@
1
+ import { File } from "./File";
2
+ export declare class Orientation extends File {
3
+ static title: string;
4
+ private static orientationIDs_used;
5
+ private static orientationIDs_unused;
6
+ constructor(data: {});
7
+ private createVID;
8
+ /**
9
+ * Delete content from database and treeHTML
10
+ */
11
+ delete(): void;
12
+ /**
13
+ * Select and highlight all shapes in a file
14
+ */
15
+ select(): void;
16
+ highlight(colorData: any[]): void;
17
+ setColor(colorData: any[]): void;
18
+ setOpacity(): void;
19
+ setVisibility(): void;
20
+ }
@@ -2,7 +2,7 @@ export declare namespace AssociativeArrays {
2
2
  const uniqueID_To_Instance: {};
3
3
  const vectorVID_To_iVector: {};
4
4
  const faceVID_To_iFace: {};
5
- const lineVID_To_iLine: {};
5
+ const curveVID_To_iCurve: {};
6
6
  const edgeVID_To_iEdge: {};
7
7
  const pointVID_To_iPoint: {};
8
8
  const vertexVID_To_iVertex: {};
@@ -2,7 +2,7 @@ import * as THREE from '../../../../../three/build/three.module';
2
2
  import { ModelData } from "../../../Index";
3
3
  import { Shape } from "../../TopoShape";
4
4
  import { LineOctree } from '../../../OctreeDataStructure/Octree';
5
- export declare class TopoLine extends Shape {
5
+ export declare class TopoCurve extends Shape {
6
6
  static title: string;
7
7
  type: ModelData.dataTypes;
8
8
  itemVID: number;
@@ -28,6 +28,10 @@ export declare class SelectionData {
28
28
  static instance: SelectionData;
29
29
  static enabledEntity: ModelData.dataTypes;
30
30
  static availableEntities: ModelData.dataTypes[];
31
+ private static readonly selectionChangedCallbacks;
32
+ static subscribeToSelectionChanged(cb: () => void): void;
33
+ static unsubscribeFromSelectionChanged(cb: () => void): void;
34
+ static notifySelectionChanged(): void;
31
35
  static activeButton: any;
32
36
  static currentItem: File;
33
37
  static defualtButton: any;
@@ -1,9 +1,9 @@
1
1
  import { ModelData } from "../../DataStorage/ModelData/Index";
2
2
  import { GeomLoader } from "./GeomLoader";
3
- export declare class LineLoader {
3
+ export declare class CurveLoader {
4
4
  geomLoader: GeomLoader;
5
- iLine: InstanceType<typeof ModelData.Shapes.TopoLine>;
5
+ iCurve: InstanceType<typeof ModelData.Shapes.TopoCurve>;
6
6
  constructor(geomLoader: GeomLoader);
7
7
  loadVertex(iShape: any, line: string, itemVID: number, shapeVID: number): import("../../DataStorage/ModelData/Shapes/Geometry/SubshapeTypes/TopoVertex").TopoVertex;
8
- loadLine(iLine: any, line: string, itemVID: number, shapeVID: number): import("../../DataStorage/ModelData/Shapes/Geometry/MainshapeTypes/TopoLine").TopoLine;
8
+ loadCurve(iCurve: any, line: string, itemVID: number, shapeVID: number): import("../../DataStorage/ModelData/Shapes/Geometry/MainshapeTypes/TopoCurve").TopoCurve;
9
9
  }
@@ -10,7 +10,7 @@ export declare class GeomLoader {
10
10
  vertexMaterial: THREE.ShaderMaterial;
11
11
  pointMaterial: THREE.ShaderMaterial;
12
12
  iPoints: InstanceType<typeof ModelData.Shapes.TopoPoint>[];
13
- iLines: InstanceType<typeof ModelData.Shapes.TopoLine>[];
13
+ iCurves: InstanceType<typeof ModelData.Shapes.TopoCurve>[];
14
14
  iFaces: InstanceType<typeof ModelData.Shapes.TopoFace>[];
15
15
  iEdges: InstanceType<typeof ModelData.Shapes.TopoEdge>[];
16
16
  iVertices: InstanceType<typeof ModelData.Shapes.TopoVertex>[];
@@ -26,8 +26,8 @@ export declare namespace EntitySelector {
26
26
  class Vertex {
27
27
  constructor(button_vertex: any);
28
28
  }
29
- class Line {
30
- constructor(button_line: any);
29
+ class Curve {
30
+ constructor(button_curve: any);
31
31
  }
32
32
  class Edge {
33
33
  constructor(button_edge: any);
@@ -14,6 +14,7 @@ export type EntityDropDownMenuType = {
14
14
  items?: {
15
15
  [key: string]: Button;
16
16
  };
17
+ availableEntities?: ModelData.dataTypes[];
17
18
  onClickHandler?: (entityButton: EntityButton) => void;
18
19
  onChangeHandler?: (type: ModelData.dataTypes) => void;
19
20
  };
@@ -28,6 +29,9 @@ export declare class EntityButton implements IViewerHtmlElement {
28
29
  private readonly element;
29
30
  private readonly label;
30
31
  private contentContainer;
32
+ private countBadge;
33
+ private _countText;
34
+ private readonly _selectionCallback;
31
35
  private isOpened;
32
36
  name: string;
33
37
  private readonly handleDocumentClick;
@@ -37,6 +41,7 @@ export declare class EntityButton implements IViewerHtmlElement {
37
41
  private style;
38
42
  constructor(config: EntityDropDownMenuType);
39
43
  private initContentContainer;
44
+ private static buildItems;
40
45
  private onDropdownButtonClick;
41
46
  private handleOnChange;
42
47
  private open;
@@ -46,7 +51,10 @@ export declare class EntityButton implements IViewerHtmlElement {
46
51
  remove(): void;
47
52
  setHtmlParent(parent: HTMLElement): void;
48
53
  setParent(parent: IViewerHtmlElement): void;
54
+ private refreshCountBadge;
49
55
  reset(): void;
50
56
  init(): void;
51
57
  getData(): any;
58
+ validate(limit: number): boolean;
59
+ setVisibility(isVisible: boolean): void;
52
60
  }
@@ -1,5 +1,23 @@
1
1
  import { DropdownList } from "./DropdownList";
2
- import { DropdownListConfig } from "./DropdownList";
3
- export declare class ModeSelector<T> extends DropdownList<T> {
4
- constructor(config: DropdownListConfig<T>);
2
+ import { LabelConfig } from "./Label";
3
+ import { IViewerHtmlElement } from '../MainMenuComponents/HtmlElementInterface';
4
+ type ModeValueType = {
5
+ [key: number]: (() => void)[];
6
+ };
7
+ export type ModeOption = {
8
+ label: string;
9
+ value: ModeValueType;
10
+ isEnabled: boolean;
11
+ };
12
+ export type ModeSelectorConfig = {
13
+ id?: string;
14
+ options: ModeOption[];
15
+ dynamicComponents?: IViewerHtmlElement[];
16
+ labelConfig?: LabelConfig;
17
+ onMouseDownHandler?: () => void;
18
+ };
19
+ export declare class ModeSelector extends DropdownList<ModeValueType> {
20
+ constructor(config: ModeSelectorConfig);
21
+ validate(): boolean;
5
22
  }
23
+ export {};
@@ -20,6 +20,7 @@ export declare class SelectionInputField {
20
20
  private selectionLimit;
21
21
  private div_treeHTML;
22
22
  private labeledInputField;
23
+ private itemName;
23
24
  constructor(config: LabeledInputConfig);
24
25
  getLabeledInputField(): LabeledInputField;
25
26
  getData(): number[];
@@ -28,5 +29,6 @@ export declare class SelectionInputField {
28
29
  private focusIn;
29
30
  private collectSelectedItems;
30
31
  private pressEscapeButton;
32
+ validate(): boolean;
31
33
  }
32
34
  export {};
@@ -7,7 +7,8 @@ export declare class LogMessageOperation implements IViewerHtmlElement {
7
7
  private static _instance;
8
8
  private readonly element;
9
9
  private readonly diagnosticLogs;
10
- constructor(diagnosticLog?: DiagnosticLog[]);
10
+ private readonly operationFailureMessage;
11
+ constructor(diagnosticLog?: DiagnosticLog[], operationFailureMessage?: string);
11
12
  /**
12
13
  * Getter for singleton instance.
13
14
  */
@@ -1,4 +1,8 @@
1
1
  declare const ViewerCommands: {
2
+ QueryCommands: {
3
+ FindNodeElement: typeof import("./Query/FindNodeElement").FindNodeElement;
4
+ Find: typeof import("./Query/Find").Find;
5
+ };
2
6
  ViewCommands: {
3
7
  Screenshot: typeof import("./View/Screenshot").Screenshot;
4
8
  RepresentationOption: typeof import("./View/Representation").RepresentationOption;
@@ -0,0 +1,22 @@
1
+ /**
2
+ * Command to find and highlight nodes/elements by their shapeUID,
3
+ * and to retrieve shapeUIDs of currently selected shapes.
4
+ */
5
+ export declare class FindNodeElement {
6
+ /**
7
+ * Finds a node or element by its shapeUID and highlights it.
8
+ * @param uid The shapeUID to look up
9
+ * @returns The found shape instance, or null if not found
10
+ */
11
+ static findByUID(uid: number): any;
12
+ /**
13
+ * Clears highlight from a node or element by its shapeUID.
14
+ * @param uid The shapeUID to unhighlight
15
+ */
16
+ static clearHighlightByUID(uid: number): void;
17
+ /**
18
+ * Gets the shapeUIDs of currently selected shapes.
19
+ * @returns Array of shapeUIDs
20
+ */
21
+ static getSelectedShapeUIDs(): number[];
22
+ }
@@ -1,5 +1,7 @@
1
1
  import * as Find from './Find';
2
+ import * as FindNodeElement from './FindNodeElement';
2
3
  declare const QueryCommands: {
4
+ FindNodeElement: typeof FindNodeElement.FindNodeElement;
3
5
  Find: typeof Find.Find;
4
6
  };
5
7
  export { QueryCommands };
@@ -2,5 +2,5 @@ export declare class SetTransparency {
2
2
  uniqueID_To_Instance: {};
3
3
  constructor();
4
4
  process(entityUIDs: number[], value: number): void;
5
- private updateColorAttributes;
5
+ private _updateColorAttributes;
6
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fcs-core-viewer",
3
- "version": "0.49.0",
3
+ "version": "0.52.1",
4
4
  "description": "3D Viewer in the Cloud",
5
5
  "author": {
6
6
  "name": "Femsolve Kft."
@@ -15,7 +15,8 @@
15
15
  "vserver": "webpack serve --config webpack.viewer3d-server.js --mode development",
16
16
  "build:edev": "webpack --progress --stats-error-details --config webpack.editor3d-dev.js",
17
17
  "build:eprod": "webpack --progress --stats-error-details --config webpack.editor3d-prod.js",
18
- "eserver": "webpack serve --config webpack.editor3d-server.js --mode development"
18
+ "eserver": "webpack serve --config webpack.editor3d-server.js --mode development",
19
+ "docs": "typedoc --options Documentation/typedoc.json"
19
20
  },
20
21
  "license": "ISC",
21
22
  "devDependencies": {
@@ -35,6 +36,7 @@
35
36
  "style-loader": "^3.3.2",
36
37
  "tailwindcss": "^4.0.16",
37
38
  "ts-loader": "^9.4.2",
39
+ "typedoc": "^0.25.0",
38
40
  "typescript": "^4.9.5",
39
41
  "webpack": "^5.89.0",
40
42
  "webpack-cli": "^5.1.4",
@@ -47,7 +49,7 @@
47
49
  "alpinejs": "^3.14.9",
48
50
  "axios": "^1.5.1",
49
51
  "dom-to-image": "^2.6.0",
50
- "fcs-core-viewer": "^0.12.5",
52
+ "fcs-core-viewer": "file:",
51
53
  "nanostores": "^0.11.4",
52
54
  "socket.io-client": "^4.7.2",
53
55
  "uuid": "^9.0.1"